- 解决Windows下使用github需要每次都要ssh-add的问题
https://blog.csdn.net/mengbjy/article/details/80840249打开git的安装目录,进入到etc/中,使用文本编辑软件(比如Editplus)编辑 bash.bashrc 文件,在末尾添加两行:
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/sshKey
这样,在每次新打开git的shell之后,会自动执行这两句话,并在shell中回显:
- git配置
1) git config的作用范围
https://www.daixiaorui.com/read/240.html
0 条评论