how to init a repo from cli
- create a repo in github first
- cd ${your_project_path}
- git init
- git add .
- git commit -m “some message for this project.”
- git pull https://github.com/youraccount/yourproject.git
- git remote add origin https://github.com/youraccount/yourproject.git
- git push -u origin master