當安裝了Git,需要自定義組態變數來新增您的個人資訊。可以使用Git工具(叫作git config
)和-l
選項(此選項提供當前組態)來獲取和設定組態變數。
git config -l
當執行上面的命令,應該會看到組態的變數,結果如下所示:
Administrator@YYPC /C/Users/Administrator/Desktop (master)
$ git config -l
core.symlinks=false
core.autocrlf=true
color.diff=auto
color.status=auto
color.branch=auto
color.interactive=true
pack.packsizelimit=2g
help.format=html
http.sslcainfo=/bin/curl-ca-bundle.crt
sendemail.smtpserver=/bin/msmtp.exe
diff.astextplain.textconv=astextplain
rebase.autosquash=true
[email protected]
core.repositoryformatversion=0
core.filemode=false
core.bare=false
core.logallrefupdates=true
core.symlinks=false
core.ignorecase=true
core.hidedotfiles=dotGitOnly
gui.wmstate=normal
gui.geometry=799x475+304+80 287 214
可以使用命令更改自定義資訊。在下一章中,您將了解如何使用git config命令組態使用者名和使用者的Eamil。