committing code to github code example
Example: committing on github
# make sure to do: git config --global user.name "username"
# git config --global user.email "[email protected]"
git init -b main
git add .
git commit -m "message"
git push origin main