2015-04-01 2 views
0

У меня есть проект на Код Google: Project on Google code. В настоящее время я экспортировал его в GitHub: Project on GitHub.Автоматизация фиксируется от кода Google до Github

Как автоматизировать отправку коммиты кода Google в GitHub? I.e. Я хочу продолжить работу с кодом Google, но все новые коммиты должны быть автоматически отправлены в репозиторий GitHub? Как я могу это сделать?

ответ

0
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. 
Смежные вопросы