## 配置 每次都需要输入帐号密码的解决方案, 这个类似记住密码的功能吧 全局配置: > git config --global credential.helper store 当前仓库: > git config credential.helper store 优先找当前, 然后找全局. > git config --global user.name yogi >git config --global user.email 1273750265@qq.com 也有生成ssh 公 私钥的, 然后把公钥发到服务器的 .ssh 目录的对应文件内的... 但是我测试下来发现是失败的, 原因是因为我是一个类似 github 的仓库, 填入后没生效, 不确定是什么原因