在本地仅保存一份代码的时候能否同时托管于github与BAE?
假如github上有github.com/userName/projectName,同时自己在BAE上也有同名应用projectName时,如何才能保持这两个远程仓库公用一份本地代码来开发上传?
github.com/userName/projectName
projectName
本人git新手,还望大神赐教。
学习是最好的投资!
http://blog.codepiano.com/2013/07/03/push-multi-remote-repositories/
Si vous utilisez cette méthode, vous n'avez pas besoin d'appuyer deux fois. Vous pouvez le télécharger dans tous les entrepôts en un seul clic.
Ajouter deux nouvelles sources distantes :
git remote add github github.com/userName/projectName git remote add bae path.com/projectname
Après git commit, soumettez-les à deux sources distantes (branche principale locale par défaut).
git push github master git push bae master
http://blog.codepiano.com/2013/07/03/push-multi-remote-repositories/
Si vous utilisez cette méthode, vous n'avez pas besoin d'appuyer deux fois. Vous pouvez le télécharger dans tous les entrepôts en un seul clic.
Ajouter deux nouvelles sources distantes :
Après git commit, soumettez-les à deux sources distantes (branche principale locale par défaut).