1. open cmd in the current folder
-
git config --global user.name "username"
-
git config --global user.email "[email protected]"
-
git init
-
git remote add keyword
6 a.) git add . #add all files in the current working directory
or
b.) git add #only add a specific file (not all files) -
git status
-
git commit -m "Initial Commit"
-
git push -u keyword master #main