-
[Git] Branching
Create new branch
git branch featureCheck available branches
git branchSwitch to branch
git checkout featureadd/commit files, will be only visible in branch
Merge
go to main branch and merge
git checkout mastergit merge featureRemove branch
git branch -d feature