Manage custom configuration options for Git repositories. These configurations can be local (for the current repository) or global (for the current user). More information: https://git-scm.com/docs/git-config.
git config --global {{user.name|user.email}} "{{Your Name|email@example.com}}"
git config {{[-l|--list]}} --{{local|global|system}} --show-origin
git config --global {{alias.unstage}} "reset HEAD --"
git config {{alias.unstage}}
git {{unstage}}
git config --global --unset {{alias.unstage}}
.git/config) in the default editor:git config {{[-e|--edit]}}
~/.gitconfig by default or $XDG_CONFIG_HOME/git/config if such a file exists) in the default editor:git config --global {{[-e|--edit]}}