本文总结了git常用的命令,以便学习者使用时查阅~

 

几个专用名词的译名如下

  • Workspace:工作区
  • Index / Stage:暂存区
  • Repository:仓库区(或本地仓库)
  • Remote:远程仓库

复制一个已创建的仓库:

git clone ssh://user@domain.com/repo.git

创建一个新的本地仓库:

git init

显示工作路径下已修改的文件:

git status

显示与上次提交版本文件的不同:

git diff

把当前所有修改添加到下次提交中:

git add

把对某个文件的修改添加到下次提交中:

git add -p <file>

提交本地的所有修改:

git commit -a

提交之前已标记的变化:

git commit

附加消息提交:

git commit -m 'message here'

提交,并将提交时间设置为之前的某个日期:

git commit --date="`date --date='n day ago'`" -am "Commit Message"

修改上次提交
请勿修改已发布的提交记录!

git commit --amend

把当前分支中未提交的修改移动到其他分支

git stash
git checkout branch2
git stash pop

列出所有stash

git stash list

查看一个stash

git show stash@{}

删除一个stash

git stash drop stash@{}

将指定的stash取出来

git stash apply stash@{}

将最后一个stash取出来,并删除掉队列中相应的值

git stash pop 

清空所有stash

git stash clear

从当前目录的所有文件中查找文本内容:

git grep "Hello"

在某一版本中搜索文本:

git grep "Hello" v2.

从最新提交开始,显示所有的提交记录(显示hash, 作者信息,提交的标题和时间):

git log

显示所有提交(仅显示提交的hash和message):

git log --oneline

显示某个用户的所有提交:

git log --author="username"

显示某个文件的所有修改:

git log -p <file>

谁,在什么时间,修改了文件的什么内容:

git blame <file>

列出所有的分支:

git branch

列出所有的分支以及其对应的远端分支:

git branch -vv

切换分支:

git checkout <branch>

创建并切换到新分支:

git checkout -b <branch>

基于当前分支创建新分支:

git branch <new-branch>

基于远程分支创建新的可追溯的分支:

git branch --track <new-branch> <remote-branch>

删除本地分支:

git branch -d <branch>

给当前版本打标签:

git tag <tag-name>

获取本地标签:

git tag

删除一个本地标签:

git tag -d <tag-name>

删除一个远端标签:

git push origin :refs/tags/<tag-name>

发布标签:

git push --tags

列出当前配置的远程端:

git remote -v

显示远程端的信息:

git remote show <remote>

添加新的远程端:

git remote add <remote> <url>

下载远程端版本,但不合并到HEAD中:

git fetch <remote>

下载远程端版本,并自动与HEAD版本合并:

git remote pull <remote> <url>

将远程端版本合并到本地版本中:

git pull origin master

将本地版本发布到远程端:

git push remote <remote> <branch>

将本地branch1发布到远程端branch2:

git push origin <branch1>:<branch2>

删除远程端分支:

git push <remote> :<branch> (since Git v1.5.0)
git push <remote> --delete <branch> (since Git v1.7.0)

将分支合并到当前HEAD中:

git merge <branch>

将当前HEAD版本重置到分支中:
请勿重置已发布的提交!

git rebase <branch>

退出重置:

git rebase --abort

解决冲突后继续重置:

git rebase --continue

使用配置好的merge tool 解决冲突:

git mergetool

在编辑器中手动解决冲突后,标记文件为已解决冲突

git add <resolved-file>
git rm <resolved-file>

两个分支的合并,将other-branch合并到main-branch中

git checkout <other-branch>
git rebase <main-branch>
git checkout <main-branch>
git merge <other-branch>

放弃工作目录下的所有修改:

git reset --hard HEAD

移除缓存区的所有文件(i.e. 撤销上次git add):

git reset HEAD

放弃某个文件的所有本地修改:

git checkout HEAD <file>

重置一个提交(通过创建一个截然不同的新提交)

git revert <commit>

将HEAD重置到指定的版本,并抛弃该版本之后的所有修改:

git reset --hard <commit>

将HEAD重置到上一次提交的版本,并将之后的修改标记为未添加到缓存区的修改:

git reset <commit>

将HEAD重置到上一次提交的版本,并保留未提交的本地修改:

git reset --keep <commit>

最后附一张完整展示git流程的图片

参考:

http://www.codeceo.com/article/git-command-guide.html

http://www.ruanyifeng.com/blog/2014/06/git_remote.html

http://git-scm.com/doc

简明 Git 命令速查表的更多相关文章

  1. 简明 Git 命令速查表(中文版)

    原文引用地址:https://github.com/flyhigher139/Git-Cheat-Sheet/blob/master/Git%20Cheat%20Sheet-Zh.md在Github上 ...

  2. Git 命令速查表

    Git 命令速查表 1.常用的Git命令 命令 简要说明 git add 添加至暂存区 git add-interactive 交互式添加 git apply 应用补丁 git am 应用邮件格式补丁 ...

  3. Git命令速查表【转】

    本文转载自:http://www.cnblogs.com/kenshinobiy/p/4543976.html 一. Git 常用命令速查 git branch 查看本地所有分支git status ...

  4. Git命令速查表

  5. Git 常用命令速查表(图文+表格)

    一. Git 常用命令速查 git branch 查看本地所有分支git status 查看当前状态 git commit 提交 git branch -a 查看所有的分支git branch -r ...

  6. Git 常用命令速查表(图文+表格)【转】

    转自:http://www.jb51.net/article/55442.htm 一. Git 常用命令速查 git branch 查看本地所有分支git status 查看当前状态 git comm ...

  7. Git常用命令速查表 & Git Basics & github : release 发布!

    Git常用命令速查表 & Git Basics  & github : release  发布! Git常用命令速查表: 1 1 1 1 1 http://git-scm.com/bo ...

  8. GNU Emacs命令速查表

    GNU Emacs命令速查表 第一章  Emacs的基本概念 表1-1:Emacs编辑器的主模式 模式 功能 基本模式(fundamental mode) 默认模式,无特殊行为 文本模式(text m ...

  9. VIM 命令速查表

    今天整理一份 VIM 常用命令速查表,当做给自己备忘. 进入VIM 相关 命令 描述 vim filename 打开或者新建文件 vim +n filename 打开文件并将光标置于第n行行首 vim ...

随机推荐

  1. 导入aar文件出错

    错误日志: > Could not resolve all dependencies for configuration ':app:_debugCompile'. > Could not ...

  2. reduce() 函数

    reduce()函数 reduce()函数也是Python内置的一个高阶函数.reduce()函数接收的参数和 map()类似,一个函数 f,一个list,但行为和 map()不同,reduce()传 ...

  3. Qt实现的根据进程名来结束进程

    1.头文件及实现部分: #include <windows.h> #include <tlhelp32.h> #include "psapi.h" #pra ...

  4. Deploying JRE (Native Plug-in) for Windows Clients in Oracle E-Business Suite Release 12 (文档 ID 393931.1)

    In This Document Section 1: Overview Section 2: Pre-Upgrade Steps Section 3: Upgrade and Configurati ...

  5. jq判断 复选框是否被选中 亲测可用

    var shortName = $('#shortName').is(':checked')?1:0;

  6. 【异常】VS中运行HTTP 无法注册URL

    参考资料 http://www.java123.net/detail/view-449670.html http://www.cnblogs.com/jiewei915/archive/2010/06 ...

  7. 双击防止网页放大缩小HTML5

    幕双击放大或缩小.即相当于这样设置 <meta name="viewport" content="width=device-width, initial-scale ...

  8. 【腾讯Bugly干货分享】微信终端跨平台组件 mars 系列(一) - 高性能日志模块xlog

    本文来自于腾讯bugly开发者社区,非经作者同意,请勿转载,原文地址:http://dev.qq.com/topic/57ff5932cde42f1f03de29b1 本文来源: 微信客户端开发团队 ...

  9. 分享google的技能的11个级别,大家看看自己到哪个级别了?

    you are unfamiliar with the subject area. you can read / understand the most fundamental aspects of ...

  10. 如何通过自定义注解实现AOP切点定义

    面向切面编程(Aspect Oriented Programming, AOP)是面向对象编程(Object Oriented Programming,OOP)的强大补充,通过横切面注入的方式引入其他 ...