【问题标题】:Automation commits from Google code to Github从 Google 代码到 Github 的自动化提交
【发布时间】:2015-04-02 02:45:56
【问题描述】:
【问题讨论】:
标签:
git
github
synchronization
google-code
【解决方案1】:
google code doesnt belong to you, what you have access to is your github repo. so clone the repo on your computer.
1.git clone https://github.com/VeLKerr/code--review.git
2.try add a new file say test.foo in that same directory on your computer
3. git add --all
4.git commit -am "Testing Foo"
5. git push origin master
That should solve it.