1、進入根目錄,指令:cd / 2、創建記錄賬號密碼的文件,指令:touch .git-credentials 3、用vi打開文件,指令:vi .git-credentials 4、按i,進入編輯模式 5、輸入https://{username}:{password}@github.com,其中,將 ...
Linux讓git記住賬號密碼
——IT唐伯虎
摘要: Linux讓git記住賬號密碼。
1、進入根目錄,指令:cd /
2、創建記錄賬號密碼的文件,指令:touch .git-credentials
3、用vi打開文件,指令:vi .git-credentials
4、按i,進入編輯模式
5、輸入https://{username}:{password}@github.com,其中,將{username}替換為你的賬號,{password}替換為你的密碼,https://[email protected]替換為你的git倉庫地址
6、按Esc鍵,然後按:wq,保存並退出(那個:是需要同時按著shift鍵才能出來的)
7、讓git讀取剛纔建立的文件,指令:git config --global credential.helper store
8、執行一次git操作,比如git clone xxxxxx,然後輸入賬號密碼,這次賬號密碼將會被記錄下來,以後不用再輸入了