Some useful git commends:
1. copy the code from your github:
git clone .git
example: git clone
2. make commit changes
git add .
3. add your changes to git repository (local repository)
git commit -m "some commend"
example: git commit -m "hahaha i did it! it's fucking ez"
4. push your local changes to github
git push origin master
阅读(831) | 评论(0) | 转发(0) |