$ git status
$ git add file
$ git commit -m "Short comment on changes made"
$ git push
$ git log
$ git checkout <hash> path/to/file
$ git commit -m "Check out older version of file"
$ git push
$ git rm --cached path/to/largefile
$ git commit --amend -CHEAD
$ git push
$ mkdir backup
$ mv path/to/largefile backup
$ git filter-branch --tree-filter 'rm -f path/to/largefile' HEAD
$ git push
$ mv backup/largefile new/path/for/largefile
$ rm -r backup
git mv path/to/file new/path/to/file
git commit -m "Move/rename file comment"
git push