- List of things you are going to work on
- List of thigns you have done recently (copy and paste into the weekly sprint quiz of what you done)
Creating the first connection between the github classroom repo and your files
- git init
- git add .
- git commit -m "Message"
- git remote add origin <repo_url>
- git remote -v
- git push -u origin main
Standard Updating of a repo
- git add .
- git commit -m "Message"
- git push -u origin main
Conencting your repo from an alternative device
- Open vs code and inside of the welcome tab, clone github repository
- copy and paste your https github into the vs code bar
- select a destination, and open it
Updating changes from another computer to the one you are currently on
- git pull