git push時候總提示輸入帳號密碼,如何免除設置?

1. 打開.ssh所在目錄
  home,即C:\Users\Administrator
2. 在home中,進入git bash命令終端,建立.git-credentials文件,編輯
  touch .git-credentials
  vim .git-credentials
  https://{username}:{password}@github.com

3. 在終端下執行
  git config --global credential.helper storegit

4. 能夠看到~/.gitconfig文件,會多了一項:
  [credential]
    helper = storegithub

相關文章
相關標籤/搜索