8 ms·
You might be interested in: git config --global core.excludesfile ~/.gitignore You can have a system-wide (but local only) .gitignore. It doesn't help other p
by jacobparker 6y ago
You might be interested in:
git config --global core.excludesfile ~/.gitignore
You can have a system-wide (but local only) .gitignore. It doesn't help other people who clone your repo, but it can be useful in some situations.
- callahad 6y agoNo need to change the config; the default global ignore file path is ~/.config/git/ignore
- jacobparker 6y agoAh, thank you.