InterviewSolution
Saved Bookmarks
| 1. |
How to do git configuration to get or set various user options? |
|
Answer» When reading/getting, the values are read from the system, global and repository local configuration files by default, and options --system, --global, --local and --file <filename> can be used to tell the COMMAND to read from only that specific location. When writing, the new value is written to the repository local configuration file by default(--local), and options --system, --global, --file <filename> can be used to tell the command to write to that location.
|
|