Tengo un repositorio en github, por ejemplo testrepo. Ahora me gustaría configurar un repositorio local repo
que tenga una rama origin-master
donde deseo poder editar cosas desde el repositorio.Comprender git: conectar la rama a un repositorio remoto
repo/origin-master <--------> origin/master
La clonación funciona bien:
mkdir repo && cd repo && git init
# not necessary of course:
echo "master" > master && git add master && git ci -m "master"
git remote add origin [email protected]:<username>/testrepo.git
git fetch origin
git branch --set-upstream origin-master origin/master
git checkout origin-master
# create a new file:
echo "for origin-master" > orig-master && git add orig-master && git ci -m "orig-master"
pero
git push origin
To [email protected]:<username>/testrepo.git
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to '[email protected]:<username>/testrepo.git'
To prevent you from losing history, non-fast-forward updates were rejected
Merge the remote changes (e.g. 'git pull') before pushing again. See the
'Note about fast-forwards' section of 'git push --help' for details.
¿Cómo puedo saber git que si quiero empujar a su origen, quiero empujar la rama local origin-master
a origin/master
?
Muestra la secuencia que no funciona, no la que sí lo hace. – jthill