美文网首页Git使用Git
git推送代码到不同服务器

git推送代码到不同服务器

作者: EldonZhao | 来源:发表于2017-02-20 11:07 被阅读55次

一、需求背景:

公司版本管理服务器上有代码仓库A,个人在github上有账号。现在需要把代码仓库A推送到个人github上的repository里。

二、解决方法:

使用git push可以实现该需求。

  1. clone仓库A代码:
git clone https://jdjr.com/EldonZhao/repoA.git
  1. github上创建repository:
    在github网站上添加一个repository,如myRepo。

  2. 添加远程仓库:

cd repoA
git remote add myRepo https:github.com/EldonZhao/myRepo.git
  1. 推送代码到github仓库:
git push --all myRepo

三、查看github仓库中代码:

打开gihub上myRepo仓库,可以看到代码已经上传成功。

相关文章

网友评论

    本文标题:git推送代码到不同服务器

    本文链接:https://www.haomeiwen.com/subject/iubswttx.html