I setup a file extension to be ignored, how can I tell if it was added to git?
I use git add -A to bulk add files.
btw, what popular GUI tools are used for diff’s?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
git statusbefore you commit everything (as in just after yougit add) will show you if your files with the extension you want ignored have been added.I personally prefer to just use
git diffbut that’s not a GUI. People seem to like Git-K.If I’m reviewing code, I love Github’s diff tools. Allows me to look at differences between entire branches and comment on specific lines of code.