Eliminé mi origen de git anterior y creé uno nuevo. Lo hice git agregar. y git commit. Pero actualizará los cambios, ¿cómo empujo todo en el nuevo origen
git remote add origin <address> git push origin <branchname>
(funciona con git 1.8.4)
Si quieres empujar todas las twigs a la vez:
git push <URL> --all
Para empujar todas las tags :
git push <URL> --tags
Hmmmm solo hice esto. No estoy seguro si hiciste exactamente lo mismo, pero tenía un método diferente.
Configuré un repository desnudo en "newserver" (usando ssh). Tenía el clon completo del repository en mi computadora portátil.
Entonces lo hice:
git remote set-url origin "newservers url" git push origin master
git push new_remote_name branch_name