Git
Here is also a great website to learn about git processes.
| Command | Explanation |
|---|---|
cd | Sends you to your home directory |
cd .. | Sends you up to the parent directory |
cd directoryname | Sends you to the specified directory |
ls | Lists all files and directories in your current directory |
cat filename.txt | Opens the entire file. You cannot scroll so this is good for short files. |
less filename.txt | Opens the file and allows you scroll through |
nano filename.txt | Opens the file and allows you to edit |
sudo shutdown now | Shuts down the computer |
sudo reboot now | Restarts the computer |