2017-03-03 199 views
0

我有一個Git倉庫設立到位桶我的遠程git存儲庫密碼存儲在本地機器上?

$ git remote -v 
origin https://[email protected]/myusername/my_repository_name.git (fetch) 
origin https://[email protected]/myusername/my_repository_name.git (push) 

我拉,並從我的辦公室工作站和家用電腦推到倉庫。 當我從辦公室工作站推或拉時,它會提示我輸入密碼。 但是,當我從家用電腦推或拉時,它不會提示輸入密碼。

我沒有特別記得我在家用電腦上做了什麼記住密碼。

運行$ git config credential.helper回報manager

$ git config credential.helper 
manager 

內容在根級別

[user] 
name = myusername 
email = [email protected] 

.gitconfig文件在我的用戶文件夾如果存儲在本地硬盤上的密碼?

檢查當前憑證狀態的命令是什麼?

我該如何記得我辦公室工作站上的密碼?

注:我使用Windows 7

+0

您是否檢查了此https://confluence.atlassian.com/bitbucketserver/permanently-authenticating-with-git-repositories-776639846.html – Smit

+0

@Smit我沒有使用任何給定的方法 – Rahul

+0

您使用家庭和工作中的[Git Credential Manager](https://github.com/Microsoft/Git-Credential-Manager-for-Windows)?如果你在工作,應該記住。 (鏈接有關於密碼存儲位置的信息)。 – crashmstr

回答

1

'控制面板'=> '用戶'=> '憑據管理器'

0

如果$ git config credential.helper回報manager,密碼存儲在Windows憑據管理器,如果它返回store,密碼存儲在用戶文件夾中的.git-credentials文件中。

相關問題