Home  >  Q&A  >  body text

Git 怎么添加多个远程仓库呢?

命令行下git 要怎么添加多个远程仓库呀,还有要怎么分别提交呢?GitHub 和 Coding 都在用…

男神男神2818 days ago1025

reply all(2)I'll reply

  • 数据分析师

    数据分析师2017-10-01 00:28:41

    How to add multiple remote repositories in Git? -PHP Chinese website Q&A-How to add multiple remote repositories in Git? -PHP Chinese website Q&A

    Let’s take a look and learn.

    reply
    0
  • 迷茫

    迷茫2017-02-23 09:49:25

    输入的时候不需要输入 < 和 >

    应该是 git remote add <name> <url>
    其中,name 表示你要给这个远程库起的名字,url 表示这个库的地址

    提交的时候,先 add, commit。然后 git push <name> <branch> 就行
    其中,name 表示你在上一步给它起的名字,branch 表示某一个分支


    reply
    0
  • Cancelreply