Basic Git

Status
$ git status
# how you can check the changes madeInitialise Git
$ git init
# sets up everything for git to start tracking changes Add file to Staging Area
$ git add filename
# adds the file to the staging area ready for trackingDiffrence
$ git diff filename
# shows what the diffrence isCommit
$ git commit -m "type a note here for your update"
$ git pushLog (look at older versions)
$ git log
# logs all your commits with their notes