How to create a branch from another branch in Git
In this tutorial, we are going to learn about how to create a branch from another branch in git.
Creating branch from another
- First, move to that branch you want to create by using the
git checkoutcommand followed by branch name.
git checkout dev
# dev is another branch name- Now, we need to create a new branch using the
git branchcommand followed by the new branch name.
git branch work
# work is a new branch name- At final, move to the new branch using git
checkoutcommand followed by a new branch name.
git checkout workWe successfully created a new branch called work from the dev branch.


