I have .gitignore
d .DS_Store
and .gitignore
files. But still see them in the \"git status\".
Can someone explain to me how I can m
This is building off of Jakub Jirutka's response. I was a little confused upon first glance, but I tried it and it worked. Here is his answer stated - hopefully - more clearly.
His answer put simply: store unwanted files in .git/info/exclude
(which is inside every git repository). Put each on a new line.
The .gitignore
file is useful to help ignore files and directories that you know are or will be generated but are unwanted. The fact that you can git add .gitignore
and then commit that and push it is really useful. When you clone this repository on another computer, for example, all of the files that should be ignored (after a ./configure; make; sudo make install;
, for example, usually generates example files and a lot of other links) will be ignored (if they are in the .gitignore
.
However, sometimes, one is not sure whether a file is wanted in the repository or wants the file to just exist outside of git control as if it were in a non-git-controlled directory. This can be done by adding this to the exclude file inside of the exclude
file inside the .git/info
directory.
Every git repository has a .git folder. To completely exclude a file or directory, go to the good ole terminal, cd
to the root of the repository (i.e. cd src/best_repo_eva
). Then you will see a .git/
. Then, cd .git/info/
. There will probably only be one file there called exclude
. Use your favorite editor (just kidding; you may only use butterflies' wings to focus cosmic rays in the upper atmosphere to flip the correct bits in your drive platter ;) to edit the exclude
such that it contains the files you want to exclude on new lines.
Easier solution: You have two files you want excluded: tmp1
and ignoreadf
Go to terminal and...
cd src/best_repo_eva
echo -e "tmp
tab\n ign
tab" >> .git/info/exclude
The tabs, obviously, only work if your terminal supports it. Note the -e
(supports backslash escapes) and the \n
(which is emphasized with a space) between the the two files.
Storing a lot of files with a similar ending, could be as easy as cd src/best_repo_eva
then echo -e $(ls -1 | grep "tmp") >> .git/info/exclude
(that's ls -ONE
not ls -L
- note that ls -a -1
doesn't work, unfortunately). That would store all files that contain the sequence "tmp" into the exclude file.