Ubuntu系統(tǒng)中git每次提交都要輸入密碼怎么辦
Ubuntu系統(tǒng)中git每次提交都要輸入密碼怎么辦
Ubuntu系統(tǒng)中git每次提交都要輸入密碼怎么辦?不少用戶在ubuntu系統(tǒng)中使用Git時,經常會遇到需要頻繁輸入密碼的情況,在每次提交代碼的時候都要求輸入密碼,下面跟著學習啦小編來一起來了解下吧。
Ubuntu系統(tǒng)中git每次提交都要輸入密碼解決方法一
1: cd 回車;進入當前用戶目錄下;
2: vim .git-credentials (如果沒有安裝vim 用其它編輯器也可以或 sudo apt-get install vim 安裝一個)
3:按照以下格式輸入內容:
https://{username}:{password}@github.com
其中username,password,github.com 都換成你自己的內容
4:保存退出后執(zhí)行下面命令
git config --global credential.helper store
執(zhí)行完后
/home/用戶名/.gitconfig 會新增一項
helper = store
這是再執(zhí)行git push/pull的時候就不會在要求你輸入密碼了。
當然,還有一種方式就是在git clone 的時候,不用https://的形式,而用git@git (ssh)的形式。這種方式也可以避免每次都要輸密碼。
最后,如果是在Mac os x或Uindows平臺下,還可以用sourcetree 這樣的ide工具,不過現在好要FQ才能下載了。
Ubuntu系統(tǒng)中git每次提交都要輸入密碼解決方法二
創(chuàng)建文件存儲GIT用戶名和密碼
在%HOME%目錄中,一般為C:\users\Administrator,也可以是你自己創(chuàng)建的系統(tǒng)用戶名目錄,反正都在C:\users\中。文件名為.git-credentials,由于在Window中不允許直接創(chuàng)建以"."開頭的文件,所以需要借助git bash進行,打開git bash客戶端,進行%HOME%目錄,然后用touch創(chuàng)建文件 .git-credentials, 用vim編輯此文件,輸入內容格式:
touch .git-credentials
vim .git-credentials
https://{username}:{password}@github.com
添加Git Config 內容
進入git bash終端, 輸入如下命令:
git config --global credential.helper store
執(zhí)行完后查看%HOME%目錄下的.gitconfig文件,會多了一項:
[credential]
helper = store
重新開啟git bash會發(fā)現git push時不用再輸入用戶名和密碼
Ubuntu系統(tǒng)中git每次提交都要輸入密碼怎么辦相關文章:
2.Ubuntu系統(tǒng)git每次提交都要輸入密碼如何解決