3
I ignored some files in a git project and I just need to have control to know which ones were ignored or not. Will that at some point I need to change.
I’ve tried all the commands below:
1116 git --index-info
1117 git check-ignore
1119 git check-ignore ./
1120 git ls-files -i
1121 cat .git/ignore
1122 cat .git/index
1123 git ls-files --others -i --exclude-standard
Thanks for your help..
Hello Rafael, wouldn’t you like to post a mini-example of commands you ran to "ignore" files? I usually edit the file
.gitignore
to ignore a particular file, and view it Patterns ignored listed the contents of the filecat .gitignore
, but I don’t know if I’m talking about the same thing you are.– Anthony Accioly