1: git init (initialize the git repository)
git init(在当前目录初始化git仓库)
git init test(新建test目录,并将test目录初始化为git仓库)
2: git clone (clone project)
git clone url(将url地址的git仓库克隆到本地)
3: git config (git configuration)
git config --list(列出git配置)
git config --global user.name "XXX"(配置用户名)
git config --global user.email "XXX"(配置邮箱)
4: git log (git log)
git log(查看当前分支所有日志)
git log -n n(查看最近n条日志)
git log --pretty=oneline(查看当前分支日志的commit_id 和提交信息)
git show XXX(查看指定commit_id提交的详细信息)
git diff XXX(查看指定commit_id提交中新版和旧版的对比信息)
5: git add (move the changes to the staging area)
git add .(将所有改动移到暂存区)
git add XXX(将指定文件移到暂存区)
6: git commit (submit changes to the staging area to the local warehouse)
git commit -m "提交说明"
7: git push (push the local warehouse to the remote warehouse)
git push
8: git pull (pull remote code to local)
git pull(将远程仓库代码拉取到本地)
9: git branch (branch management)
git branch(列出所有本地分支)
git branch -r(列出所有远程分支)
git branch -a(列出所有本地分支和远程分支)
git branch test(新建test分支,但依然停留在当前分支)
git checkout -b test(新建test分支,并切换到test分支)
git merge test(将test分支合并到当前分支)
git branch -d test(删除test本地分支)
git push origin --delete test(删除test远程分支)
10: git tag (git tag management)
git tag(列出所有标签)
git tag -l(查看标签列表)
git tag -a v0.1(基于当前HEAO创建v0.1标签)
git tag v0.1 XXX(在指定commit_id提交中新建一个v0.1标签)
git tag -d v0.1(删除本地v0.1标签)
git push origin :refs/tags/v0.1(删除远程v0.1标签)
git push origin tag v0.1 (推送v0.1标签到远程仓库)
git show v0.1(查看v0.1标签信息)
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。