Git 使用实例
Posted dailycode
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git 使用实例相关的知识,希望对你有一定的参考价值。
cmd
cd project-directory
git init
git config user.name ‘yourname‘
git config user.email ‘[email protected]‘
git pull https://github.com/yourname/yourrepository //不需要帐号密码
git log
…… //修改某些东西
git status
git diff
git add .
git commit -m ‘modify something‘
//git push –set-upstream url branchname
git push --set-upstream https://github.com/yourname/yourrepository master
//显然,需要 github 帐号,且事先在 github 建立仓库。
以上是关于Git 使用实例的主要内容,如果未能解决你的问题,请参考以下文章