Git 修改已初始化配置過的 user.name user.email

Huberyoung發表於2018-09-18

首先進入git bash

輸入
$ git config --list

core.symlinks=false
core.autocrlf=true
core.fscache=true
color.diff=auto
color.status=auto
color.branch=auto
color.interactive=true
help.format=html
rebase.autosquash=true
http.sslcainfo=E:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt
credential.helper=manager
user.name=*
user.name=*
user.email=

可以檢視配置的一些東西。可以看到user.name 和user.email 分別是什麼。。
如果你沒有初始化過。那麼直接:
$ git config --global user.name "輸入你的使用者名稱"
$ git config --global user.email "輸入你的郵箱"

這樣就可以初始化了。
如果你已經初始化過了,但是不小心把郵箱和使用者名稱輸錯了,那麼就要修改了。
我看到網上有人說繼續$ git config --global user.name "輸入你的使用者名稱"或者 $ git config --global user.email "輸入你的郵箱" 來修改郵箱和密碼。我嘗試了一下,是不行的(至少在window10的環境下)會給出這樣的錯誤:
warning: user.name has multiple values
error: cannot overwrite multiple values with a single value
Use a regexp, --add or --replace-all to change user.name.

這邊給出了--repalce-all 這個東西。

然後我嘗試著用
$ git config --global --replace-all user.email "輸入你的郵箱"
$ git config --global --replace-all user.name "輸入你的使用者名稱"

然後再檢視下
$ git config --list
發現修改成功了。

2:

再說說git bash和git cmd的區別啊。。簡單一句話,,git cmd是git bash的子集。所以直接用git bash就行了。 然後git gui是圖形介面。

以下內容來自網路:
git

版本控制工具,支援該工具的網站有Github、BitBucket、Gitorious、國內的osChina倉庫、csdn倉庫等等。

shell

是linux、unix系統的外殼,也可以理解為命令列,就是你輸入並執行命令的地方,git通過命令列和圖形介面兩種方式使用shell。

bash

是shell的一種,最常用的shell之一。

git Bash

方便你在windows下使用git命令的模擬終端(windows自帶的cmd功能太弱)linux、unix可以直接使用git。

git shell

它是安裝了git的shell,bash是一種shell。

Huberyoung

相關文章