标签:
How do I create a new git branch from an old commit?
git checkout -b justin a9c146a09505837ec03b
This will create the new branch and check it out.
git branch justin a9c146a09505837ec03b
This creates the branch without checking it out.
标签:
原文地址:http://www.cnblogs.com/chucklu/p/4747099.html