Reminder of git fetch/clone/submit cycle:
To obtain the project repo initially
ssh csci fork csci439/project csci439/$USER/project
git clone csci:csci439/$USER/project
To submit, be sure you are inside your cloned repository
and have done a "git add" for each file to be submitted, e.g.
git add filename
Create a commit for the submission, e.g.
git commit -m "final project submission"
Push the project
git push origin --all
(being paranoid here with the --all just in case you've created branches)
|