Do you want BuboFlash to help you learning these things? Or do you want to add or correct something? Click here to log in or create user.



Tags
#git
Question
Multiple git configurations
Answer

6 files:

  1. %ALLUSERSPROFILE%\Git\Config (Windows only)
  2. (system) /etc/gitconfig, with being the git installation path. (on Windows, it is \mingw64\etc\gitconfig)
  3. (system) $XDG_CONFIG_HOME/git/config (Linux/Mac only)
  4. (global) ~/.gitconfig (Windows: %USERPROFILE%\.gitconfig)
  5. (local) .git/config (within a git repo $GIT_DIR)
  6. a dedicated file (with git config -f), used for instance to modify the config of submodules: git config -f .gitmodules ...

the command line with git -c: git -c core.autocrlf=false fetch would override any other core.autocrlf to false, just for that fetch command. The order is important: any config set in one source can be overridden by a source listed below it.


Tags
#git
Question
Multiple git configurations
Answer
?

Tags
#git
Question
Multiple git configurations
Answer

6 files:

  1. %ALLUSERSPROFILE%\Git\Config (Windows only)
  2. (system) /etc/gitconfig, with being the git installation path. (on Windows, it is \mingw64\etc\gitconfig)
  3. (system) $XDG_CONFIG_HOME/git/config (Linux/Mac only)
  4. (global) ~/.gitconfig (Windows: %USERPROFILE%\.gitconfig)
  5. (local) .git/config (within a git repo $GIT_DIR)
  6. a dedicated file (with git config -f), used for instance to modify the config of submodules: git config -f .gitmodules ...

the command line with git -c: git -c core.autocrlf=false fetch would override any other core.autocrlf to false, just for that fetch command. The order is important: any config set in one source can be overridden by a source listed below it.

If you want to change selection, open document below and click on "Move attachment"

pdf

owner: cramer7575 - (no access) - GitNotesForProfessionals.pdf, p80

Summary

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Details

No repetitions


Discussion

Do you want to join discussion? Click here to log in or create user.