GitSsh
来自三线的随记
git 多个remote时候如何管理
git 多个remote如何管理
background:因为某些原因我需要有多个remote 并单独 pull或者fetch
添加remote
git remote add gitlab git@givenurl:[email protected]
//添加新的remote并命名为gitlab
单独fetch或者pull
git remote -v
# gitlab git@givenurl:[email protected] (fetch)
# gitlab git@givenurl:[email protected] (push)
# origin [email protected]:[email protected](fetch)
# origin [email protected]:[email protected](push)
//查看remote信息
git remote show gitlab
git fetch gitlab master
//git fetch gitlab/master master
Could not open a connection to your authentication agent 错误
ssh-agent bash
杂七杂八
生成的这个是公钥id_rsa.pub 和 私钥 id_rsa
你可以 ssh-keygen -f othername 来生成指定的文件名,或者生成之后 也可以两个改名
但是ssh命令默认只会读取 id_rsa这个私钥,所以如果 是其它 的名字需要添加配置文件 ~/.ssh/config
比如下面是我专门为 github 生成的key的配置
Host github.com gist.github.com api.github.com
IdentityFile /path/to/othername