https://cs.appstate.edu/~jbf/classes/cs5666/Javatrix/
At start of working session git pull
to update files for any changes made by team member
How to push local created branch to GitHub repository:
git push origin branch_name
After working with a file:
git add . (or file_name)
git commit -m "useful info"
When finished with working session:
git push -u origin branch_name
When your branch is behind main:
git merge main
When main is behind your branch:
git checkout main
git merge branch_name