git init
git clone https://github.com/user/repo
git add .
# "Stage" all
git commit -m "Fixed :)"
# After you do some work...
git add .
git commit -m "it works!"
git push origin master