Changes between Version 7 and Version 8 of GitCookbook

Show
Ignore:
Timestamp:
09/09/09 00:43:18 (12 years ago)
Author:
dukeleto
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GitCookbook

    v7 v8  
    8080{{{ git checkout some_branch }}} 
    8181 
     82= switching branches = 
     83 
     84Let's say you are on '''new_branch''' but you want to go back to the master branch: 
     85 
     86{{{ git checkout master }}} 
     87 
     88 
    8289= merge = 
    8390 
     
    8592 
    8693{{{ git merge foobar }}} 
     94 
     95= praise/blame = 
     96 
     97Git has everyone's favorite VCS command, blame! 
     98 
     99{{{ git blame somefile }}} 
     100