這些命令將會顯示您在 Git 配置中設置的用戶名和郵箱地址
git config --global user.name
git config --global user.email
或者直接
git config --list --global
這會顯示所有的全局配置,包括用戶名和郵箱。
如果你想查看當前倉庫的配置,可以使用以下命令:
git config --local --list
如果你想查看所有配置:
git config --list
gif config 後面跟著的option參數無論順序。
設置:
git config --global user.name "John Doe"
git config --global user.email "[email protected]"
這樣就會在全局設置用戶名和密碼。
注意:本身在安裝Git程式的時候已經填過用戶名和密碼了。所以“設置”這個行爲本身不需要重複。除非你要更改。
→下一篇:GitBash_在本地創建一個Git倉庫
→返回目錄:GitBash使用手冊
Today's comments have reached the limit. If you want to comment, please wait until tomorrow (UTC-Time).
There is 16h08m32s left until you can comment.