How to add your project to GitHub at first time
1: setup github username
git config user.name
2: setup github email
git config user.email
3: setup github password
git config user.password
1: Create a new repository on GitHub. To avoid errors, do not initialize the new repository with README, license, or gitignore files. You can add these files after your project has been pushed to GitHub.
2: Open Git Bash on your project location then initialize the local directory as git repository
git init
3: Add the files in your new local repository. This stages them for the first commit.
git add .
4: Commit the files that you’ve staged in your local repository.
git commit -m "first-commit"
5: At the top of your GitHub repository’s Quick Setup page, click to copy the remote repository URL.
6: In the Command prompt, add the URL for the remote repository where your local repository will be pushed.
git remote add origin your repository link
7: Push the changes in your local repository to GitHub.
git push origin master
** Congrats !!! You did it **