###Workflow###
- Create new branch
- Commit changes often to your branch
- Submit a pull request when all your changes are ready to be merged
- Someone else should review and accept the pull request
Clone Repo
git clone <GitHub url>
Checkout New Branch
Create new branch from the dropdown menu on github.
Then in terminal type:
git checkout <branch_name>
Pull Remote Changes
git pull
Add New File to Branch Locally
git add <file_name>
Add All New Files to Branch Locally
git add -A
Commit Changes Locally
git commit -m "commit message"
Push Changes to Remote Branch
git push