git config --global
user.name - Define the author name to be used for all commits by the
current user.
GIT CONFIG
git config --global
user.email - Define the author email to be used for all commits by the
current user.
git config --global
alias.
-
Create shortcut for a Git command. E.g. alias.glog “log --graph
--oneline” will set ”git glog” equivalent to ”git log --graph --oneline.
git config --system
core.editor -
Set text editor used by commands for all users on the machine.
arg should be the command that launches the desired editor (e.g., vi).
git config
--global --edit -
Open the global configuration file in a text editor for manual editing.