- open git terminal/cli
- git branch new-branch-name (make new branch)
- git checkout new-branch-name (switch to new branch)
- git push -u origin new-branch-name (make push/pull possible through Rstudio)
- make changes and save files
- add changes with Rstudio or git add
- commit changes with Rstudio or git commit -m “Commit message.”
- push changes with Rstudio or git push origin new-branch-name