Adding an existing project to GitHub
Blogs20142014-09-17
Adding an existing project to GitHub
Firstly, Create a new repository on GitHub. Then:
cd my-project
git init
git add .
git commit -m"https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line"
git remote add origin ...
git pull remote master //README.md
git push remote masterThe following could be used to enhance the project:
- gist
- wiki (use markdown)
- travis (testing)
