how to commit from terminal
- git add --all
- git commit -a -m "commit name"
- git push -u origin main
how to update local repo with remote-origin
- git pull
how to make a new branch
- git checkout -b branch_name
- git push --set-upstream origin game
how to merge a branch
- git checkout branchA_name
- git merge branchB_name