当前位置: 技术问答>linux和unix
git从一个仓库更新,提交到另一个仓库?
来源: 互联网 发布时间:2017-05-06
本文导语: 我从git clone https://github.com/a/a.git更新。a是别人的代码仓库,我没权提交。我想把我修改后的代码提交到我的代码仓库https://github.com/b/b.git。 请问应该怎么做? | git push https://github.com/b/b.git...
我从git clone https://github.com/a/a.git更新。a是别人的代码仓库,我没权提交。我想把我修改后的代码提交到我的代码仓库https://github.com/b/b.git。
请问应该怎么做?
请问应该怎么做?
|
git push https://github.com/b/b.git mybranch:remote_branch_name
|