- Create the
.git/folder
git init
- Assign the
USER_NAMEto this repository
git config user.name "<USER_NAME>"
- Assign the
USER_EMAILto this repository
git config user.email <USER_EMAIL>
- Select the
mainbranch
git branch -M main
- Assign the remote
REPOSITORY
git remote add origin https://github.com/<USER_NAME>/<REPOSITORY>.git
-
Make commit
-
Push
git push -u origin main