/cheatSheet

a little list of commands needed to push repositories onto GitHub in order / reminder to self

cheat sheet

for publishing my codes on GitHub through VS Code's terminal

git init for initializing a repository inside my local folder
git add . to add everything that is in said folder
git commit -m "[a message]" for commiting, and finally
git push <link to the GitHub repository> to bring it all here!

Vírtuz-