Workspace:工作区
Index / Stage:暂存区
Repository:仓库区(或本地仓库)
Remote:远程仓库
一.git配置
# 显示当前的Git配置
$ git config--list
# 编辑Git配置文件
$ git config -e
# 设置提交代码时的用户信息
$ git config user.name "[name]"
$ git config user.email "[email address]"
二.远程分支
# 克隆远程代码
$ git clone [-url]
# 拉取远程分支
$git checkout -b 本地分支名 origin/远程分支名
# 列出所有本地分支/列出所有远程分支/ 列出所有本地分支和远程分支
$ git branch / $ git branch-r / $ git branch -a
# 新建一个分支,但依然停留在当前分支
$ git branch [branch-name]
# 新建一个分支,并切换到该分支
$ git checkout -b [branch]
# 新建一个分支,指向指定commit
$ git branch [branch-name] [commit]
# 新建一个分支,与指定的远程分支建立追踪关系
$ git branch --track [branch] [remote-branch]
# 切换到指定分支,并更新工作区
$ git checkout [branch-name]
# 建立追踪关系,在现有分支与指定的远程分支之间
$ git branch --set -upstream [branch] [remote-branch]
# 合并指定分支到当前分支
$ git merge [branch]
# 选择一个commit,合并进当前分支
$ git cherry-pick [commit]
# 删除分支
$ git branch -d [branch-name]
# 删除远程分支
$ git push origin --delete [branch-name]
$ git branch -dr [remote/branch]
添加修改文件
# 添加指定文件到暂存区
$ git add [file1] [file2] ...
# 添加指定目录到暂存区,包括子目录
$ git add [dir]
# 添加当前目录的所有文件到暂存区
$ git add .
# 删除工作区文件,并且将这次删除放入暂存区
$ git rm [file1] [file2]...
# 停止追踪指定文件,但该文件会保留在工作区
$ git rm --cached [file]
# 改名文件,并且将这个改名放入暂存区
$ git mv [file-original] [file-renamed]
提交到遠程
# 提交暂存区到仓库区
$ git commit -m "提交注释 "
# 提交暂存区的指定文件到仓库区
$ git commit [file1] [file2] ... -m "提交注释"
# 提交工作区自上次commit之后的变化,直接到仓库区
$ git commit -a
#提交时显示所有diff信息
$ git commit -v
# 使用一次新的commit,替代上一次提交# 如果代码没有任何新变化,则用来改写上一次commit的提交信息
$ git commit --amend -m "提交注释"
# 重做上一次commit,并包括指定文件的新变化
$ git commit --amend [file1] [file2]...
# 显示所有远程仓库
$ git remote -v
# 增加一个新的远程仓库,并命名
$ git remote add origin [url]
# 取回远程仓库的变化,并与本地分支合并
$ git pull [remote] [branch]
# 上传本地指定分支到远程仓库
$ git push [remote] [branch]
# 强行推送当前分支到远程仓库,即使有冲突
$ git push [remote] --force
# 显示有变更的文件
$ git status
# 显示当前分支的版本历史
$ git log
# 显示指定文件是什么人在什么时间修改过
$ git blame [file]
# 显示暂存区和工作区的代码差异
$ git diff
# 显示暂存区和上一个commit的差异
$ git diff --cached [file]
放棄本地修改
# 恢复暂存区的指定文件到工作区
$ git checkout [file]
# 恢复暂存区的所有文件到工作区
$ git checkout .
同时对多个文件执行了git add操作,但本次只想提交其中一部分文件
$ git add *
$ git status
# 取消暂存
$ git reset HEAD
#回滚提交
$git reset --hard e377f60e28c8b84158(commit id)
$git push -f origin 1.0.0(分支名)
标签
git tag 用于新建一个标签,默认为HEAD,也可以指定一个commit id;
$ git tag v0.9 6224937(commit id)
git tag -a 标签名 -m "标签信息" 可以指定标签信息;
git tag -s 标签名 -m "标签信息"可以用PGP签名标签;
命令git tag 可以查看所有标签。
命令git push origin 可以推送一个本地标签;
$git push origin 标签名
命令git push origin --tags可以推送全部未推送过的本地标签;
命令git tag -d 可以删除一个本地标签;
命令git push origin :refs/tags/可以删除一个远程标签。