- git config --global user.email [email protected]
- git config --global user.name "John Doe"
- git init
- touch .gitignore=> add node_modules to it
- git add .
- git commit -m "commit message"
- create a repo on github
- git remote add origin Your Repo Name
- git push -u origin master