minte9
LearnRemember



Create

This only creates a branch, it doesn't switch to that branch.
 
git branch testing
Create a branch and switch to it.
 
git checkout -b dev
    // create a branch and switch to it

git checkout master

Delete

 
git branch -d myBranch



  Last update: 205 days ago