Creating a New Branch
git checkout -b <BranchName> [origin/<RemoteBranchName>]
git checkout -b <BranchName> [CommitOrRef]
git branch <BranchName> [CommitOrRef]Create on top of remote branch instead of local
Fetch before creating
Fetch & Create in one go

Last updated