GIT tags are created to mark a specific point in git history and then deployed. But sometimes you might want to debug the deployed code and the best way is to create a new GIT branch from that tag.
New branch can be created with ‘git checkout’ command with ‘-b’ and new branch name as arguments. This will create a new branch from your current branch.