Git Checkout

How to Create a new GIT Branch from a Tag?

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.

How to Create a Git Branch (WITH EXAMPLE)

A new branch can be created with the ‘git checkout’ command with the ‘-b’ option and a new branch name as arguments. This will create a new branch from your current branch and also switch the branch to the new branch.
Subscribe to Git Checkout