I'm trying to exclude subversion's folders from being tracked by git. I tried a couple different setups for .git/info/exclude, but it doesn't seem to work. I would use git-svn, but it's a pain to request access to get that to work, so I'd rather just work around this by excluding the folders.

I want to exclude ".svn/entries"

I've tried adding the following lines to .git/info/exlude: .svn entries .svn/entries entries svn

No matter what I try, .svn entries shows up when I run git status

link|improve this question

65% accept rate
feedback

7 Answers

up vote 21 down vote accepted

I think you want to use a .gitignore file in your top-level directory. This will work if you put ".svn/entries" on a line in that file. You might just put ".svn" instead of ".svn/entries" as well.

EDIT: See comments. If they files are already being tracked by git, they'll always show up in git status.

link|improve this answer
I tried this too, and this didn't work. The problem is that each folder has its own .svn/entries. – johannix May 4 '09 at 20:36
3  
This works for me, even in the presence of one in each folder. Are the entries showing up in svn status because you've already asked git to track them? If you've git added them, they'll show up no matter what. Just git rm --cached them and you'll be OK. – Jesse Rusak May 4 '09 at 20:40
There it is. I started by adding all the files in trunk... Good catch Jesse! – johannix May 4 '09 at 20:49
3  
Not the most elegant thing in the world, but I used the following to recursively strip .svn folders (as per @JesseRusak): for dir in $(find ./ -type d); do git rm --cached -r $dir/.svn; done; – ghayes Oct 10 '11 at 5:17
feedback

Create a ~/.gitexcludes file and put this in:

.svn

Tell git about your .gitexcludes file:

git config --global core.excludesfile "/home/USER_NAME/.gitexcludes"
link|improve this answer
Where by .*.swp you mean .svn – kch May 4 '09 at 20:39
Casey, I really thought that was going to work...but alas it didn't. This is pretty frustrating. – johannix May 4 '09 at 20:41
@kch fixed that – Casey May 4 '09 at 20:42
Ya, I trid it with .svn , still didn't work. – johannix May 4 '09 at 20:42
@johannix - I updated the command. please try again – Casey May 4 '09 at 20:48
show 1 more comment
feedback

Do what Casey suggests, except name the file .gitignore and put it in the root of your git repo.

I also like to do a attrib +h .gitignore so it won't show up in my explorer windows.

link|improve this answer
Bah- Jesse beat me to it. – Andrew Burns May 4 '09 at 20:52
feedback

This thread has the correct answer:

Git - Ignore certain files contained in specific folders

What you really need is:

.svn*
link|improve this answer
feedback

This following structure and .gitignore contents worked for me

  • \.git
  • \.svn
  • \.gitignore

.gitignore contents

.svn/
.gitignore
link|improve this answer
feedback

what do you mean its a pain to request access to get git-svn to work. git-svn just issues svn commands so if you already have SVN access you can use git-svn without anyone upstream knowing at all or needing to change anything

link|improve this answer
1  
Access to install things on my work computer. There's a perl module missing, and to ask the admins to make that mod, is just a pain... – johannix May 4 '09 at 20:33
feedback

since every versioned folder has a .svn directory you have to put:

*/.svn/*

link|improve this answer
This doesn't work. It will ignore src/.svn and coolStuff/.svn but not src/main/.svn. – MatrixFrog Jan 20 '11 at 7:42
for multiple folders the "*/" is the way to go! than you need two lines in .gitignore: "/.svn/" and "*/.svn/" – nils petersohn Jan 22 '11 at 20:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.