亚洲欧美精品沙发,日韩在线精品视频,亚洲Av每日更新在线观看,亚洲国产另类一区在线5

<pre id="hdphd"></pre>

  • <div id="hdphd"><small id="hdphd"></small></div>
      學習啦 > 學習電腦 > 電腦知識大全 > Ubuntu系統(tǒng)中git每次提交都要輸入密碼怎么辦

      Ubuntu系統(tǒng)中git每次提交都要輸入密碼怎么辦

      時間: 春健736 分享

      Ubuntu系統(tǒng)中git每次提交都要輸入密碼怎么辦

        Ubuntu系統(tǒng)中git每次提交都要輸入密碼怎么辦?不少用戶在ubuntu系統(tǒng)中使用Git時,經(jīng)常會遇到需要頻繁輸入密碼的情況,在每次提交代碼的時候都要求輸入密碼,下面跟著學習啦小編來一起來了解下吧。

        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工具,不過現(xiàn)在好要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ā)現(xiàn)git push時不用再輸入用戶名和密碼

      Ubuntu系統(tǒng)中git每次提交都要輸入密碼怎么辦相關文章:

      1.git每次提交都要輸入密碼怎么辦

      2.Ubuntu系統(tǒng)git每次提交都要輸入密碼如何解決

      3.如何處理Ubuntu 14.04 重啟后屏幕默認最大亮度

      4.Win7如何查看主板支持多少G內存

      5.Linux怎么查看系統(tǒng)已安裝內核

      1473199