- cd . . . Change Directories
- cd . . . Move up a directory
- ls . . . List the files in a Directory
- rm filename . . . delete a file
- cp filename newfilename . . . copy a file
- git init . . . Initialize a repository (directory)
- git add -A . . . Stage all files — get them ready to Commit
- git commit -m ‘Describe what you did’ . . . commit files
- git push . . . send them to github