Basic Git

Status

$ git status
# how you can check the changes made

Initialise 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 tracking

Diffrence

$ git diff filename
# shows what the diffrence is

Commit

$ git commit -m "type a note here for your update"

$ git push

Log (look at older versions)

$ git log
# logs all your commits with their notes