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?
|
I just did a Then I created a .gitignore file. Now, when I type "git status", ".gitignore" appears in the list of untracked files. Why is that? |
||||
| show 1 more comment |
|
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. |
|||||||||||||||||||||
|
|
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. |
|||||||||||||||||||||
|
|
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. |
|||||||||
|
|
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
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 |
|||||
|
|
After you add the
|
|||
|
|
|
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
this will output what would be excluded if you ran it. then you run it by going
Then add a |
|||||||||||
|
|
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). |
|||
|
|
|
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:
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. |
|||
|
|
|
If someone has already added a
|
|||||||||||||||
|
|
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:
|
|||
|
|
|
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 *~ |
|||
|
|
|
Navigate to the base directory of your git repo and execute the following command:
All dot files will be ignored, including that pesky .DS_Store if you're on a mac. NOTE: |
||||
|
|
|
I found that the best place to set up an ignore to the pesky IntelliJ seems to do this automatically when you set up a git repository in it. |
||||
|
|
It is quite possible that an end user wants to have Git ignore the ".gitignore" file simply because the IDE specific folders created by Eclipse are probably not the same as NetBeans or another IDE. So to keep the source code IDE antagonistic it makes life easy to have a custom git ignore that isn't shared with the entire team as individual developers might be using different IDE's. |
|||
|
|
.) quickly descends into denying (ignore), etc.. File nomenclature is just like life.. lots of existential dilemmas, dicey coping mechanisms, etc. – alex gray Jul 29 '12 at 18:18git add self && git commit -m "-1 for reverting existential depression" && git remote rm HEAD– Alastair Jan 17 at 12:44What happened to my balls?. The question was about some circles that didn't want to appear on the screen (it was as AS3 question). – 11684 Mar 10 at 19:09