0

I know how to checkout a specific branch from here, but after having done so (checkout on same branch), I wish to now 'git checkout head' to get back to the latest revision.

One way is to git pull from remote and merge that way, but is there a way I can do this without depending on remote?

Please tell me how to do this on TortoiseGit, not command line.

Community
  • 1
  • 1
Molten Ice
  • 2,715
  • 1
  • 27
  • 37

1 Answers1

3
  1. TortoiseGit -> Show Log
  2. Right click branch name hyperlink on top left corner
  3. You have a short history of branches, select master
  4. Right click the first commit in log list, switch / checkout to master
linquize
  • 19,828
  • 10
  • 59
  • 83
  • As an added point if right click doesn't show it up you can left-click on the hyperlink of branch name and manually select master, should work too! Thanks @linquize! – Molten Ice Jun 16 '14 at 09:20