Ignore modified (but not committed) files in git?
Can I tell git to ignore files that are modified (deleted) but should not be committed? The situation is that I have a … Read more
Can I tell git to ignore files that are modified (deleted) but should not be committed? The situation is that I have a … Read more
This question already has answers here: Can git ignore a specific line? (9 answers) Closed 7 years ago. .gitignore can ignore whole files, … Read more
What is the correct way to make git ignore temporary files produced by vim in all directories (either globally across the system or … Read more
Visual Studio 2015 creates a new folder called “.vs”. What is the purpose of it and should I add it to source control? … Read more
I love to use git diff -w to ignore whitespace differences. But, I just noticed that it ignores even whitespace differences in the … Read more
I have some files in my repository that should be ignored, i added them to the .gitignore but, of course, they are not … Read more
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), … Read more
I am getting my feet wet with Git and have the following issue: My project source tree: / | +–src/ +—-refs/ +—-… | … Read more
Can I ignore files locally without polluting the global git config for everyone else? I have untracked files that are spam in my … Read more
I have a project in which I have to change the mode of files with chmod to 777 while developing, but which should … Read more