html tool

2019年1月3日星期四

git 增加远程仓库


https://segmentfault.com/a/1190000011294144

方法一: 使用 git remote add 命令

1.1# 如下命令查看远程仓库的情况,可以看到只有一个叫 github 的远程仓库。
git remote
github

git remote -v
github  https://github.com/zxbetter/test.git (fetch)
github  https://github.com/zxbetter/test.git (push)
1.2# 使用如下命令再添加一个远程仓库(这里以码云为例)
[popexizhi:  git remote add ${name} ${url} 很好用,这个之后git push ${name} ${branch} 就ok了]
git remote add oschina https://git.oschina.net/zxbetter/test.git
1.3# 再次查看远程仓库的情况,可以看到已经有两个远程仓库了。然后再使用相应的命令 push 到对应的仓库就行了。这种方法的缺点是每次要 push 两次。
git remote
github
oschina

git remote -v
github  https://github.com/zxbetter/test.git (fetch)
github  https://github.com/zxbetter/test.git (push)
oschina https://git.oschina.net/zxbetter/test.git (fetch)
oschina https://git.oschina.net/zxbetter/test.git (push)

没有评论:

发表评论