1. 程式人生 > >Git pull避免使用者名稱和密碼方法

Git pull避免使用者名稱和密碼方法

 linux下

1. 在~/下, touch建立檔案 .git-credentials, 用vim編輯此檔案,輸入:

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

 注意去掉{}


2. 在終端下執行  git config --global credential.helper store

3. 可以看到~/.gitconfig檔案,會多了一項:
    [credential]
        helper = store

windows下
1. 新增一個HOME環境變數,變數名:HOME,變數值:%USERPROFILE%

2. 建立git使用者名稱和密碼儲存檔案
git bash進入%HOME%目錄,新建一個名為"_netrc"的檔案,內容如下:

    machine {git account name}.github.com
    login your-usernmae
    password your-password