ls
list files in the current directoryls -a
list files, INCLUDING HIDDEN FILESls -l
list files in a list output formatls -al
list all hidden files in a list output format
mkdir testFolder
Make a folder called "testFolder"
cd testFolder
change directories to the "testFolder" folder
rm file.txt
Remove the file called "file.txt"rm -rf testFolder
Remove the folder called "testFolder" and everything in it
git status
View the status of your current project.git add file.txt
Stage the specific file "file.txt" for a change to be commitedgit add .
Stage all files in the current repo for change to be commitedgit commit -m "Commit message that will be saved in the log"
Commit(AKA Save) stage changesgit push
push local repo with new commits to the remote repo in githubgit log
View the git log. This conatins all the commit history.git pull
Pull the latest changes of the remote branch.git pull --reabse
Pull the latest changes of the remote branch, and rebase your new changes ontop of the new changes in the remote branch. This will help resolve merge conflicts.
zh
Show hidden filesspace
Select/Deselect files or foldersyy
Copy file(s) or folder(s)dd
cut file(s) or folder(s)pp
Paste file(s) or folder(s)a
Rename a file:mkdir testFolder
Create a folder called "testFolder"