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
参考下这个吧!