How to use branch
- make
git branch ${branch_name} -
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.
- delete
git branch -d ${branch_name}