Git Gui: Avoiding Unnecessary Files When Rescanning

How to avoid scanning unnecessary / temporary files in the Git GUI? e.g. obj, pdb files etc ??

+3
source share
1 answer

The usual mechanism is used, i.e.:

  • list of directories, files or templates in '.git / info / exclude' - this will be for the repository
  • the same thing, but in a file .gitignoreinside the repository itself - this can be fixed and must be performed for each project shared by all participants.
+5
source

All Articles