up vote 168 down vote favorite
35
share [g+] share [fb]

I just did a git init on the root of my new project.

Then I created a .gitignore file.

Now, when I type "git status", ".gitignore" appears in the list of untracked files. Why is that?

link|improve this question

77% accept rate
50  
This has to be the most bizarre question title on whole SO :) – Josip Jun 9 '09 at 8:31
6  
grin. Then more reason for you to vote up the question. – Jacques René Mesrine Jun 10 '09 at 4:50
feedback

12 Answers

up vote 184 down vote accepted

The .gitignore file should be in your repository, so it should indeed be added and committed in, as "git status" suggests. It has to be a part of the repository tree, so that changes to it can be merged and so on.

So, add it to your repository, it should not be gitignored.

That being said, if you really want you can add .gitignore to the .gitignore file if you don't want it to be committed.

link|improve this answer
3  
Shouldn't this be part of the repository's metadata rather than a file that is tracked? – endolith Mar 12 '10 at 3:38
2  
The repository metadata is local to the repository. If you add a commit hook to your repo, and someone clone your repo, they won't get the commit hook, for example. – August Lilleaas Mar 13 '10 at 6:51
1  
I hate this ugly file in my repository – wukong Aug 31 '11 at 9:36
2  
@wukong, if you're working on a team, shouldn't everyone should be ignoring the same set of files? That's why the .gitignore file gets added to the repository. No one says you have to deploy it as part of your project. – Kyralessa Sep 24 '11 at 23:02
3  
@wukong then your problem is called OCD, not .hgignore. – foljs Dec 22 '11 at 1:07
show 1 more comment
feedback

If you want to store the list of ignored files outside of your Git tree, you can use the .git/info/exclude file. It is applied only to your checkout of the repo.

link|improve this answer
5  
+1, this is great for ignores that aren't project related, such as emacs *~ backup files, .DS_Store from OS X and so on. – August Lilleaas May 19 '10 at 7:48
4  
@AugustLilleaas I personally prefer to put these types of {editor,platform}-specific files in ~/.gitignore so they're ignored for any repository I work on. – Michael Mior Nov 17 '11 at 14:32
feedback

You could actually put a line ".gitignore" into your ".gitignore" file. This would cause the ".gitignore" file to be ignored by git. I do not actually think this is a good idea. I think the ignore file should be version controlled and tracked. I'm just putting this out there for completeness.

link|improve this answer
2  
This doesn't seem to work. – ehsanul Sep 19 '09 at 6:13
Worked for me! version 1.5.6.5. I also agree with 1800 INFORMATION that its not a good idea, but I think it could be okay in certain contexts (say you use a git-svn repository, and you don't want git-ish files to go to svn). The excludes file is probably better. – J. Polfer Aug 3 '10 at 22:14
feedback

You can also have a global user git .gitignore file that will apply automatically to all your repos. This is useful for IDE and editor files (e.g. swp and *~ files for Vim). Change directory locations to suite your OS

1) Add to your ~/.gitconfig file

[core]
excludesfile = /home/username/.gitignore

2) Create a ~/.gitignore file with file patterns to be ignored

2) Save your dot files in another repo so you have a backup (optional).

Any time you copy, init or clone a repo your global gitignore file will be used as well

link|improve this answer
I believe this is the best solution for situations where your editors leave behind temp files, e.g. .*.swp (VIM) and ._* (TM), since it wouldn't make sense to continuously add these rules to every git repo, and to force other users with different IDE's to check for these files. – Thomas Hunter May 31 '11 at 14:45
feedback

After you add the .gitignore file and commit it, it will no longer show up in the "untracked files" list.

git add .gitignore
git commit -m "add .gitignore file"
git status
link|improve this answer
feedback

The idea is to put files that are specific to your project into the .gitignore file and (as already mentioned) add it to the repository. For example .pyc and .o files, logs that the testsuite creates, some fixtures etc.

For files that your own setup creates but which will not necessarily appear for every user (like .swp files if you use vim, hidden ecplise directories and the like), you should use .git/info/exclude (as already mentioned).

link|improve this answer
feedback

Just incase someone else has the same pain we had. We wanted to exclude a file that had already been committed.

This post was way more useful: working with .git/info/exclude too late

Specifically what you need to ignore a file is actually use the command git remove See git rm (http://www.kernel.org/pub/software/scm/git/docs/git-rm.html)

you test it by going

git rm --dry-run *.log
(if you say wanted to exclude all the log files)

this will output what would be excluded if you ran it.

then

you run it by going

git rm *.log
(or whatever filename path / expression you want to)

Then add a *.log line to your .gitignore file.

link|improve this answer
3  
Of course, you might want to follow this up with adding the relevant patterns (i.e., *.log) to your .gitignore, so they don't clutter your git status if they show up in the future. – Patrick O'Leary Feb 4 '10 at 2:59
Although my problem wasn't related to the same as the OP's: Thanks for letting me know that I would need to use RM to "clean" up my repo after I make changes to .gitignore (if files are already comited.) Noob error, I know, but this was the first place that I personally have seen anyone mention that. – Mike Mar 29 '11 at 11:15
Thanks for the feedback. Yeah that's why I wrote it, having come here and then going the long way around to work this out also, thought it would be good to write it up. :) – Evolve Apr 1 '11 at 5:35
feedback

Of course the .gitignore file is showing up on the status, because it's untracked, and git sees it as a tasty new file to eat!

Since .gitignore is an untracked file however, it is a candidate to be ignored by git when you put it in .gitignore!

So, the answer is simple: just add the line:

.gitignore # Ignore the hand that feeds!

to your .gitignore file!

And, contrary to August's response, I should say that it's not that the .gitignore file should be in your repository. It just happens that it can be, which is often convenient. And it's probably true that this is the reason .gitignore was created as an alternative to .git/info/exclude, which doesn't have the option to be tracked by the repository. At any rate, how you use your .gitignore file is totally up to you.

For reference, check out the gitignore(5) manpage on kernel.org.

link|improve this answer
feedback

If someone has already added a .gitignore to your repo, but you want to make some changes to it and have those changes ignored do the following:

git update-index --assume-unchanged .gitignore

Source.

link|improve this answer
1  
Bad idea, there is a reason .git/info/excludes exists. – Arrowmaster Feb 9 '11 at 22:25
I presume there's a reason --assume-unchanged exists too. Why is one better than the other? – leif81 Feb 10 '11 at 18:58
1  
And btw .git/info/excludes does not work if the file is already tracked. – leif81 Feb 10 '11 at 19:00
This really helped me with a .gitignore that was already committed and for which I did not wish to commit changes. I'm running git 1.7.4.1 from Ubuntu 11.04 repos and the help pages add this in update-index. "This option can be also used as a coarse file-level mechanism to ignore uncommitted changes in tracked files (akin to what .gitignore does for untracked files). Git will fail (gracefully) in case it needs to modify this file in the index e.g. when merging in a commit; thus, in case the assumed-untracked file is changed upstream, you will need to handle the situation manually." – YonahW May 10 '11 at 0:51
feedback

This seems to only work for your current directory to get git to ignore all files from the repository.

update this file

.git/info/exclude

with your wild card or filename

*pyc *swp *~

link|improve this answer
feedback

Watch out for the following "problem" Sometimes you want to add directories but no files within those directories. The simple solution is to create a .gitignore with the following content:

*

This seams to work fine until you realize that the directory was not added (as expected to your repository. The reason for that is that the .gitignore will also be ignored, and thereby the directory is empty. Thus, you should do something like this:

*
!.gitignore
link|improve this answer
feedback

Navigate to the base directory of your git repo and execute the following command:

echo '\\.*' > .gitignore

All dot files will be ignored, including that pesky .DS_Store if you're on a mac.

NOTE: echo '\\.*' > .gitignore will overwrite your existing .gitignore

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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