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 使用实例的主要内容,如果未能解决你的问题,请参考以下文章

git--.gitignore--使用/详解/实例

Git实例教程

Git使用实例分析

怎么在阿里云上搭建git服务器

git版本回退 实例

Git管理项目实例说明-记录和跟踪项目