02. Git Config
git config --list # list config values
git config <key> # read config key
git config --system key value # read/write system git config
git config --global key value # read/write global git config
git config --local key value # read/write local git configInitial config
git config --global user.name "John Doe"
git config --global user.email johndoe@example.comgitignore config
gitignore configGit configuration
Last updated