Git Global Configuration: Setting User Name and Email
Git does not have a concept of global variables. However, you can set global configuration options using the 'git config --global' command. These options are stored in the '~/.gitconfig' file.
To set a global configuration option, use the following syntax:
git config --global <option> <value>
For example, to set your name and email address globally, use the following commands:
git config --global user.name 'Your Name'
git config --global user.email 'youremail@example.com'
You can also view your global configuration options using the 'git config --global --list' command.
原文地址: https://www.cveoy.top/t/topic/nEPK 著作权归作者所有。请勿转载和采集!