-
git config --global user.name "your-user-name"
-
git config --global user.email "your-email"
-
git config --global --list
-
git init
-
git status
-
git add .
-
git commit -m "your-commit-message"
-
git push -u "git-repo-URL" main
-
git push -u origin main (if origin was set previously use this, otherwise use command #8)
-
git pull "git-repo-URL" main