distante : git push origin --delete [nom_de_la_branche]
git merge-base branch2 branch3
050dc022f3a65bdc78d97e2b1ac9b595a924c3f2
git merge-base HEAD origin/master
git branch -a --sort=-committerdate
Before you can start working locally on a remote branch, you need to fetch it as called out in answers below.
To fetch a branch, you simply need to:
git fetch origin
This will fetch all of the remote branches for you. With the remote branches in hand, you now need to check out the branch you are interested in, giving you a local working copy:
git checkout -b test origin/test
ou : git checkout -t origin/test