Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的公司正计划从一个 git 主机转移到一个新的 git 主机......我必须采取哪些步骤来移动我的代码?
我可以对新主机执行“git pull”然后“git push”吗?
您可能希望更改origin远程(默认)以对应新的托管服务提供商(这样,您就不会错误地推送到旧的):
origin
git remote remove origin git remote add origin <url here>
您可以在git-remote 手册中获得更多详细信息