DEV Community

davidka7
davidka7

Posted on

Basics of the terminal, git

I am just going to share some basics off using git. I thought It would be a helpful reminder for new programmers playing around with the terminal.
Let get started.
To save your code on the file do "git add."
to Save it officially do "git commit -m"your special message here"" after you did git add .
And to push to its specific source, do "git push".
If you need to go into a file do, "cd "file name"", and if you need to return backwards into the main folder or file do "cd ..".
Thats really all you need to know.

Oldest comments (0)