Pre requirements
Your working environment should installed with Git and consider base branch name is Main
Create new branch based on Main branch
git checkout -b accountName/branchName
Following is the example
git checkout -b jelupuru/newLayout
After createing new branch in local, we need to push the branch to remote ( to Github or ADO repo or BitBucket etc... )
How to push new branch to remote
Following is the push command for the above new branch created
git push --set-upstream origin jelupuru/newLayout
Post a Comment
Post a Comment