Pages

Saturday, June 28, 2014

How to push to github

Just to remind myself on how to add, commit and push my save project to github. Assume you know how to login to github and connect github using terminal.

After development saved, use this code.

git status     // to check status on what file been modified
git add .     // to add the modified file. Don't forget the 'dot' at the end
git commit -m "You can add whatever note necessary"  // to commit file before push
git push      // automatically git (files) will be push and save at github









No comments:

Post a Comment

If you have any comment and question, please don't hesitate to post.