首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 操作系统 > UNIXLINUX >

git从一个仓库更新,提交到另一个仓库?该如何解决

2013-12-22 
git从一个仓库更新,提交到另一个仓库?我从git clone https://github.com/a/a.git更新。a是别人的代码仓库,

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
[解决办法]
和svn 差不多吧!
git commit 
http://blog.csdn.net/crylearner/article/details/7685158
参考下这个吧!

热点排行