git 全域性設定使用者名稱 密碼 郵箱

2021-09-27 12:57:17 字數 994 閱讀 3718

# git config命令的–global引數,用了這個引數,表示你這台機器上所有的git倉庫都會使用這個配置,當然也可以對某個倉庫指定不同的使用者名稱和email位址。

# 1.檢視git配置資訊

$ git config --list

# 2.檢視git使用者名稱、密碼、郵箱的配置

$ git config user.name

$ git config user.password

$ git config user.email

# 3.設定git使用者名稱、密碼、郵箱的配置

$ git config user.name "freedom"

$ git config user.password "123456"

$ git config user.email "[email protected]"

# 3.設定git使用者名稱、密碼、郵箱的配置(全域性配置)

$ git config --global user.name 使用者命

$ git config --global user.name freedom

$ git config --global user.password 密碼

$ git config --global user.password abc0506abc

$ git config --global user.password 郵箱

$ git config --global user.email "[email protected]"

# 4.修改git使用者名稱、密碼、郵箱的配置(跟設定語法一樣,沒有使用者名稱就新增,有了使用者名稱就修改)

$ git config user.name "freedom"

# 4.修改git使用者名稱、密碼、郵箱的配置(全域性配置)

$ git config --global user.name "freedom"

# 5.刪除git使用者名稱、密碼、郵箱的配置

git 全域性設定使用者名稱 密碼 郵箱

git config命令的 global引數,用了這個引數,表示你這台機器上所有的git倉庫都會使用這個配置,當然也可以對某個倉庫指定不同的使用者名稱和email位址。1.檢視git配置資訊 git config list 2.檢視git使用者名稱 密碼 郵箱的配置 git config user....

Git之全域性設定使用者名稱 密碼 郵箱

配置git的使用者名稱相關指令如下 首先,在任意資料夾開啟bush命令列 輸入以下需要的指令!git config命令的 global引數,用了這個引數,表示你這台機器上所有的git倉庫都會使用這個配置,當然也可以對某個倉庫指定不同的使用者名稱和email位址。1.檢視git配置資訊 git con...

Git 配置使用者名稱 郵箱 密碼

git config global user.name usernamegit config global user.email user emailgit config global credential.helper store該命令會記住密碼,執行一次 git pull 或 git push ...