open the terminal quickly:
Windows WINDOWS KEY -> "git bash" -> HIT ENTER
Mac COMMAND SPACE -> "terminal" -> HIT ENTER
pwd -> print working directory -> "where am i?"
git init -> makes a repository in a folder which can track the contents. It makes a hidden .git file that you never need to touch (unless you wanna delete it).
mkdir -> make directory (folder) eg. mkdir my-project
cd -> change directory - moves us to a new folder cd
moves use to our home user folder, cd projects
moves us to our projects folder. cd ..
ls -> list stuff -> ls -a
-> shows all stuff (including .hidden)
mv -> move or rename something - eg. mv porjeits projects
touch -> create a file
rm -> remove a file
cat -> concatenate -> print out the file contents
history -> history -> show me what my previous commands i typed
. -> "here"
.. -> "upstairs"
genius :D i understand the meaning of the command after 15 years xD