Le 17/12/2014 08:02, Thomas Neidhart a écrit : > when you type the following command you will see all remote branches: > > git branch -r > > to switch your local environment to this branch do the following > > git fetch # update all information > git checkout -b MATH-1153 origin/MATH-1153
Even simpler, "git checkout MATH-1153" should work if you only have one remote (origin) with this branch. I suggest using "git branch -va" to see the local and remote branches with their current status. Emmanuel Bourg --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
