Skip to content

Instantly share code, notes, and snippets.

@BrandAndCelebrities
Created June 14, 2013 10:19
Show Gist options
  • Save BrandAndCelebrities/5780850 to your computer and use it in GitHub Desktop.
Save BrandAndCelebrities/5780850 to your computer and use it in GitHub Desktop.
Gérer une branche git
Lister les branchs existantes
$ git branch
Créer une branch
$ git branch new_branch
Changer de branch
$ git checkout new_branch
Supprimer une branch
$ git branch -d new_branch
Examining branches from a remote repository
$ git branch -r
$ git checkout -b my-todo-copy origin/todo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment