Hardware design files for a wearable ring smart device which is built around a modular interface that allows for interchangable sensor/interaction "gems" via a stardard 6 pin connector interface
- Save: Once you make any changes, save the file or project
- Commit: Right click on the file or project, then Version Control -> Commit. Add a note what changes you have done. This not will be still local until you do not push the changes. See the next step.
- Push: When you would like to upload all the changes to github, right click on the file / project -> Version Control -> Push
- Check: Go to your github to see if everything was uploaded correctly
- Open cmd: Once you make some updates, go into your project directory, open commad line and run:
git status
#this will show you what changes you have donegit add [path/file]
#this will prepare that specific file for commit, to add all files at once, use add .git commit -m "Change description"
#this will commit the changes with specific descriptiongit push origin master
# this will copy your changes to Github
If you would like to download the latest files from Github, then:
git pull origin master
# this will download the latest files from Github to your local computer