How to create a branch from another branch in Git

How to create a branch from another branch in Git

In this post we will give you information about How to create a branch from another branch in Git. Hear we will give you detail about How to create a branch from another branch in GitAnd how to use it also give you demo for it if it is necessary.

we are going to learn about how to create a branch from anotherbranch in git.

Creating branch from another

  1. First, move to that branch you want to create by using the git checkout command followed by branch name.
git checkout dev# dev is another branch name
  1. Now, we need to create a new branch using the git branch command followed by the new branch name.
git branch work# work is a new branch name
  1. At final, move to the new branch using git checkout command followed by a new branch name.
git checkout work

We successfully created a new branch called work from the dev branch.

Hope this code and post will helped you for implement How to create a branch from another branch in Git. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs

For More Info See :: laravel And github

We're accepting well-written guest posts and this is a great opportunity to collaborate : Contact US