GIT - 记住密码在 window & linux
Window
1 | # 因为 window 不允许之间新建 . 开头的文件,所以使用 mv 的方式 |
然后编辑 .git-credentials
1 | # github 是这样的格式 |
最后一步是
1 | git config --global credential.helper store |
Linux
在此之前或许要添加 ssh-key (https://help.github.com/articles/generating-ssh-keys/#platform-linux)
1 | $ git config --global credential.helper cache |