GIT篇 九月 03, 2019

git pull 和 git push 记住用户名密码

文章字数 242 阅读约需 1 mins. 阅读次数

执行

执行 git config credential.helper store

或者在 .gitconfig 添加

    [credential]
    helper = store
0%