Tuesday, 20 May 2025

[git] Create a local branch from another branch

From the active branch

git checkout -b <LOCAL_BRANCH>

From a donator branch

git checkout -b <LOCAL_BRANCH> <DONATING_BRANCH>

No comments:

Post a Comment

[git] Create a local branch from another branch

From the active branch git checkout -b <LOCAL_BRANCH> From a donator branch git checkout -b <LOCAL_BRANCH> <DONATING_BRANCH...