git config

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 --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 --edit

git config --global --edit