May 2, 2020 | 18:30
git config
Git comes with this handy tool that let’s you manage your Git configuration with ease.
Configuration Levels --local
(Default) Local configuration values are stored and managed at the repository level. The values are stored in a file found in the repo’s .git directory: .git/config
If you are planning to set some configuration only to be used by the specific repo you are in, then go ahead with using --local.
Read more