Can anyone please help me how to create a branch from develop using console on linux OS?
I tried
git checkout -b my-branch
but not sure on how to create it from dev branch.
Can anyone please help me how to create a branch from develop using console on linux OS?
I tried
git checkout -b my-branch
but not sure on how to create it from dev branch.
Try
git checkout -b new-branch-name dev-branch-name