Aller au contenu | Aller au menu | Aller à la recherche


Git remote changer la branche par defaut

Changer ou actualiser la branche remote par défaut :

$ git remote set-head origin -a
origin/HEAD set to integration

Lister les branches remote

$ git branch -r
  origin/HEAD -> origin/master

Mettre à jour la branche

$ git remote set-head origin -a
origin/HEAD set to integration

La création ou mise à jour est effective

$ git branch -r
  origin/HEAD -> origin/integration

Source : Git branch named origin/HEAD -> origin/master

set-head
    Sets or deletes the default branch for the named remote.
    With -a or --auto, the remote is queried to determine its HEAD.
    With -d or --delete, the symbolic ref refs/remotes/<name>/HEAD is deleted.

Ajouter un commentaire

Le code HTML est affiché comme du texte et les adresses web sont automatiquement transformées.

Fil des commentaires de ce billet