saving our work to git
git add .
git commit -m "a message"check what branch you're on, any changes to the files
git statusif you want a directory to have git in it
git init to add a remote (github address) to your local working directory
git remote add origin <something.git>we're adding a remote and we're naming that remote origin
to push code to github
git push origin masterwhen it says -u that means that it's making that branch and remote the defaults so you can just do git push
we're pushing the code to the origin remote (the github adress)
the code that's pushed will only be the master branch