July 2018
Intermediate to advanced
354 pages
10h 57m
English
Perhaps you want to create specific branches from specific commit hashes. The first thought might be to check out the commit, and then create a branch; however, it is much easier to use the git branch command to create the branches without checking out the commits:
$ git branch anotherBugFix 979e346 $ git log -1 anotherBugFix --format=format:%h 979e346 $ git log -1 anotherBugFix --format=format:%H 979e3467112618cc787e161097986212eaaa4533
Read now
Unlock full access