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 to commit git config changes for every single little random untracked file I have in my local branches.
The Note on |
|||||||||||||||||
|
|
If you need to ignore local changes to tracked files (we have that with local modifications to config files), use |
|||||
|
|
You have several options:
Also, make sure you are using patterns and not explicitly enumerating files, when applicable. |
||||