Skip to content

Latest commit

 

History

History
8 lines (5 loc) · 221 Bytes

30-028.md

File metadata and controls

8 lines (5 loc) · 221 Bytes

git: create a branch from a tag

git checkout -b <BRANCH> <TAG>

where:

  • <BRANCH> is the name of the branch you want to create
  • <TAG> is the name of the tag. (Must match something from the output of git tag)