1. 程式人生 > >git 配置用戶名和郵箱

git 配置用戶名和郵箱

lob .com 信息 post win name blog for 查看

在安裝了git for windows之後,個人總是忘記配置git config的命令,以此記錄一下:

配置用戶名和郵箱的命令

1 git config --global user.name "youname"2 git config --global user.email "[email protected]"

***最後可以通過 git config -l 這個命令查看已配置的用戶名和郵箱信息---最後的是小寫的L;

git 配置用戶名和郵箱