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