Git 操作 免平凡使用使用者名稱和密碼方法

2021-09-20 05:50:33 字數 949 閱讀 1808

windows使用git的過程中(https),一定會碰到這樣一種情況,就是每次要push 和pull時總是要輸入git的賬號和密碼,這樣不僅浪費了大量的時間且降低了工作效率。

在%home%目錄中,一般為c:\users\administrator,也可以是你自己建立的系統使用者名稱目錄,反正都在c:\users\中。檔名為.git-credentials,由於在window中不允許直接建立以"."開頭的檔案,所以需要借助git bash進行,開啟git bash客戶端,進行%home%目錄,然後用touch建立檔案 .git-credentials, 用vim編輯此檔案,輸入內容格式:

touch .git-credentials

vim .git-credentials

1.2 新增git config 內容

進入git bash終端, 輸入如下命令:

git config --global credential.helper store

執行完後檢視%home%目錄下的.gitconfig檔案,會多了一項:

[credential]

helper = store

重新開啟git bash會發現git push時不用再輸入使用者名稱和密碼

在windows中新增乙個home環境變數,變數名:home,變數值:%userprofile%

進入%home%目錄,新建乙個名為"_netrc"的檔案,檔案中內容格式如下:

machine .github.com

login your-usernmae

password your-password

重新開啟git bash即可,無需再輸入使用者名稱和密碼

來自:

git使用者名稱和郵箱

配置使用者名稱 git config global user.name 使用者名稱 git config golbal user.email 郵箱 檢查 是否配置成功 git config list 或者檢查檔案是否建立 預設路徑是 gitconfig 檔案中,表示當前使用者的目錄,比如我的是 c ...

linux系統上mongodb使用使用者名稱密碼登陸

預設的mogodb是不用使用者名稱密碼也可以登陸的,但是這是不安全的。所以預設建立乙個資料庫之後,會給這個資料庫建立乙個使用者,並賦予一些許可權 use dbname switched to db dbname db.createuser successfully added user 然後需要到配...

nginx nagios使用使用者名稱密碼鑑權設定

1 使用htpasswd生成密碼 使用apache生成 usr local apache2 bin htpasswd c htpasswd.users nagiosadmin 拷貝到nginx的伺服器上,cp htpasswd.users usr local nagios etc 2 usr loc...