en poussant à git remote branch

Je pouvais l'utiliser d'une main, avec l'apprentissage de la façon de pousser une branche locale d'une branche distante. Veuillez voir ci-dessous. Aide appréciée!

La branche locale a été créée après le clonage de l'opération, puis de le faire

$ git checkout -b mybranch remotes/origin/mybranch

$ git branch -a
  master
* mybranch
  remotes/origin/HEAD -> origin/master
  remotes/origin/master
  remotes/origin/mybranch

Mais quand il essaie de pousser les changements de sauvegarder:

$ git push mybranch mybranch
fatal: 'mybranch' does not appear to be a git repository
fatal: The remote end hung up unexpectedly

$ git push remotes/origin/mybranch mybranch
fatal: 'mybranch' does not appear to be a git repository
fatal: The remote end hung up unexpectedly

$ git push origin/mybranch mybranch
fatal: 'mybranch' does not appear to be a git repository
fatal: The remote end hung up unexpectedly
InformationsquelleAutor julio | 2011-02-22