创建了一个项目,然后通过下面的命令 push 到了 GitHub 上。如何再将这个项目 push 到其他远程仓库呢?1
2git remote add github https://github.com/zhuanli/test.git
git push -u github master
- 1.使用 git remote add 命令
1 | git remote |
- 2.使用 git remote set-url 命令
1 | git remote rm oschina |
- 3.修改配置文件
打开 .git/config 找到 [remote “github”],添加对应的 url 即可.
1 | [remote "github"] |
2和3在 push 的时候比较方便。但是在 pull 的时候只能从第一个 url 地址拉取代码。而1则不存在这种问题(可能要解决冲突)。