How to push code to GITHUB
Once in a computer
git --version
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
Once in a project
git init
git remote add origin [<https://github.com/yourgithubname/yourreponame.git>](<https://github.com/joinwebla/ecommerce-app-2.git>)
git remote -v
Every time when you push the code
git status
git add .
git commit -m 'Your message that explains about the changes included here'
git push origin master