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