Posts Tagged ‘branch’
git: How to checkout a specific commit/version to a new branch
git checkout -b branch--new commit-hash |
will checkout the commit-hash
commit in a new branch called branch-new
.
git checkout -b branch--new commit-hash |
will checkout the commit-hash
commit in a new branch called branch-new
.