2011-05-16 9 views

Respuesta

14

Puede comenzar presionando multiple repos at one (configurado with git remote, como git remote set-url).

git remote add all github:path/proj.git 
git remote set-url --add --push all url = heroku:path/proj.git 

que generaría una configuración como:

[remote "all"] 
    url = github:path/proj.git 
    url = heroku:path/proj.git 

a continuación:

git push all --all. 

Si sus repositorios se pueden escribir sólo para usted, usted no necesita ir a buscar de todos ellos en una operación Solo necesita mantenerlas actualizadas de una sola vez.

Cuestiones relacionadas