Here's how to use git. http://rogerdudler.github.io/git-guide/
- make folder for the project (something like ece353)
- checkout repository (clone this repository).
- create a remote
Creating changes and pushing to repo. making changes you do in cygwin or terminal
- git status (for status on what files were changed)
- git add . (adds all those files
- git commit -m "Make this a message on what you changed"
- git push remote master (replace remote with your remote like 'origin', master means your main branch)::