命令行下git 要怎么添加多个远程仓库呀,还有要怎么分别提交呢?GitHub 和 Coding 都在用…
╰つ ゛思 绪 万 千 , 不 如 努 力 向 前 .ヽ
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.
输入的时候不需要输入 < 和 >
应该是 git remote add <name> <url>其中,name 表示你要给这个远程库起的名字,url 表示这个库的地址
提交的时候,先 add, commit。然后 git push <name> <branch> 就行其中,name 表示你在上一步给它起的名字,branch 表示某一个分支
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.
输入的时候不需要输入 < 和 >
应该是 git remote add <name> <url>
其中,name 表示你要给这个远程库起的名字,url 表示这个库的地址
提交的时候,先 add, commit。然后 git push <name> <branch> 就行
其中,name 表示你在上一步给它起的名字,branch 表示某一个分支