Base
Read the instructions by clicking the button above. 👆
OR
Check out the commits by clicking the button below. 👇
LaunchInstructions
File Manipulation Commands
mkdir
: Creates a directory (folder)touch
: Creates an empty filemv <current file name> <new file name>
: Renames a filerm <file to be deleted>
: Deletes the fileGit Commands
git init
: Creates a local repositorygit add
: Stages a file for commitgit commit -m "<Description about commit>"
: Commits a change