Possible Duplicate:
branch from a previous commit using git
Can we create a branch from a previous commit? From the example below, can I create a branch from f70c700 (we're already at fabdd09 at this point):
$ git log --oneline --graph
*   fabdd09 Merge branch 'mybranch'
|\  
| * bd35011 Edit from mybranch
* | f70c700 Edit from master
|/  
* a2ff940 Initial submission.
Thanks.
 
     
    