ll
= list your files ("long listing")cd <directory name>
= change directorycd ..
= go up a directory
rm <filename>
= delete a filemkdir <directory name>
= make a directory
Here's the "SOP" for a typical git workflow:
git status
= see what the status of your repo isgit pull
= Pull junk from the Github repositorygit add <filename>
= Stage add your changes (new file, change to a file)git add .
= add everything in the local directorygit status
= see what you're about to commit!
git commit -m "Type a commit message"
= Commit your changes locally, with a message about what you're committing.git push
= Push your changes to the remote repo