Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> 關於Linux >> Ubuntu系統中git每次提交都要輸入密碼怎麼辦?

Ubuntu系統中git每次提交都要輸入密碼怎麼辦?

日期:2017/1/25 9:56:49      編輯:關於Linux

  在ubuntu系統中,不少用戶反映在使用Git時,經常會遇到需要頻繁輸入密碼的情況,在每次提交代碼的時候都要求輸入密碼,輸入正確密碼後能正常的登錄和使用git。很多用戶覺得每次提交都要輸入密碼很麻煩,那麼,Ubuntu系統中git每次提交都要輸入密碼怎麼辦?該怎麼避免呢?

Ubuntu系統中git每次提交都要輸入密碼怎麼辦?

  操作步聚如下:

  1: cd 回車;進入當前用戶目錄下;

  2: vim .git-credentials (如果沒有安裝vim 用其它編輯器也可以或 sudo apt-get install vim 安裝一個)

  3:按照以下格式輸入內容:

  https://{username}:{password}@github.com

  其中username,password,github.com 都換成你自己的內容

  4:保存退出後執行下面命令

  git config --global credential.helper store

  執行完後

  /home/用戶名/.gitconfig 會新增一項

  helper = store

  這是再執行git push/pull的時候就不會在要求你輸入密碼了。

  當然,還有一種方式就是在git clone 的時候,不用https://的形式,而用git@git (ssh)的形式。這種方式也可以避免每次都要輸密碼。

  最後,如果是在Mac os x或Uindows平台下,還可以用sourcetree 這樣的ide工具,不過現在好要FQ才能下載了。

  以上就是Ubuntu系統中git每次提交都要輸入密碼的解決辦法,有需要的用戶可參考上面介紹的方法來避免git每次提交都要輸入密碼的麻煩。

Copyright © Windows教程網 All Rights Reserved