git 使用者名稱密碼相關

Y_Hungry發表於2020-10-13
# 安裝git flow

sudo apt-get install git-flow

# 設定郵箱和使用者名稱

git config--global user.name $剛剛註冊的使用者名稱$

git config --global user.email $剛剛填寫的郵箱$

# 取消git對https驗證,由於git.ewatt.com沒有公開證書

git config --global http.sslVerify false  

# 儲存使用者密碼,不需要每次push都輸入密碼

git config --global credential.helper store

# 將git://協議替換為https協議

git config --global url."https://".insteadOf git://

 

相關文章