作為開發者,我們經常需要使用git進行版本控制。通常我們會將代碼push到遠端倉庫,這時我們需要輸入使用者名稱和密碼進行驗證。但是,每次都輸入使用者名稱和密碼非常麻煩,有沒有什麼方法可以簡化這個過程呢?本文就來介紹如何在本地設定git密碼,讓你的git使用更加方便。
首先要確保你已經安裝了git,如果你還沒安裝,可以去官網下載安裝套件安裝:https://git-scm .com/download
開啟終端,輸入指令:Git Bash
$ git config --global user.name "Your Name" $ git config --global user.email "your.email@example.com"
$ ssh-keygen -t rsa -C "your.email@example.com"
$ git config --global credential.helper cache
$ git config --global credential.helper 'cache --timeout=1800'
$ git push Username for 'https://github.com': your_username Password for 'https://your_username@github.com':
$ git config --global --unset credential.helper
以上是git本地設定密碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!