Git instructions:
- Click on the green clone button and copy the link.
- Open powershell or command prompt and cd to where you want to put the repository on your hard drive.
- git clone PasteTheCloneLinkHere
Make a new branch and check it out: git checkout -b NameOfBranch
See what branch you're on: git status
Pull changes from remote (online) branch: git pull
Pull changes from the remote master branch: git pull origin master
To make new changes:
- Save your changes.
- git add .
- git commit -m "description of changes"
- git push