Can I tell git to ignore files that are modified (deleted) but should not be committed? The situation is that I have a subdirectory in the repo which contains...
This question already has answers here: Can git ignore a specific line? (9 answers) Closed 7 years ago. .gitignore can ignore whole files, but is there a way to...
What is the correct way to make git ignore temporary files produced by vim in all directories (either globally across the system or locally for a single project)? 12...
Visual Studio 2015 creates a new folder called “.vs”. What is the purpose of it and should I add it to source control? 3 Answers 3
I love to use git diff -w to ignore whitespace differences. But, I just noticed that it ignores even whitespace differences in the middle of lines. How could I...
I have some files in my repository that should be ignored, i added them to the .gitignore but, of course, they are not removed from my repository. So my...
I have a lot of projects in my .Net solution. I would like to exclude all “bin/Debug” and “bin/Release” folders (and their contents), but still include the “bin” folder...
I am getting my feet wet with Git and have the following issue: My project source tree: / | +--src/ +----refs/ +----... | +--vendor/ +----... I have code (currently...
Can I ignore files locally without polluting the global git config for everyone else? I have untracked files that are spam in my git status but I don’t want...
I have a project in which I have to change the mode of files with chmod to 777 while developing, but which should not change in the main repo....