Here are some lunix terminal that I have learned so far;
Commands
Parameters
Functions
cd
directory
It allows you to change your working directory
pwd
pwd [OPTION]
Print working directory writes the full pathname of the current working directory to the standard output.
ls
ls [OPTION]... [FILE]...
List information about the Files (the current directory by default). Sort entries alphabetically.
mv
Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.
Move (rename) files
touch
touch [OPTION]... FILE...
touch - create file
Git status
None
It shows the status of our files
git commit
-m "MESSAGE..."
It commits the files which are already added.
git push
None
It publishes our home page to the server.
Home