This Repo is just for me for learning how to properly use Git/Github
Command tips:
git init - for creating a new repository on local machine
git remote add origin <repository_url> - for connecting local repository to GitHub
git branch -M main - for renaming branch
git add . - for staging
git commit -m 'Your commit message here!' - and committing changes
git status - for checking the status of files
git push -u origin main - for pushing code to GitHub