steps to sync a new local machine from existing repo on github :
- install git from https://git-scm.com
- make directory for repository
- change into directory
- git init
- git remote add origin https://github.com/effevee/IoT3-micropython
- git remote -v
- git pull origin master
steps to upload changes from local machine to repo on github :
- make your changes
- git status
- git add (filename) or git add .
- git status
- git commit -m "(commit message)"
- git push origin master
steps to download changes from repo on github to local machine :
- change into directory for repository
- git pull origin master