How to use branch

  1. make git branch ${branch_name}
  2. select git checkout ${branch_name}

    • if you want ADD,COMMIT,PUSH for this branch, every thing is same.
    • if you want merge git checkout main(master) git merge ${branch_name}
    • Furthermore, you can PUSH after upward things.
  3. delete git branch -d ${branch_name}