git-tips/README.md

650 lines
18 KiB
Markdown
Raw Normal View History

2016-07-23 10:09:16 +08:00
# Git的奇技淫巧:see_no_evil:
2016-07-23 09:45:01 +08:00
> Git常用命令集合Fork于[tips](https://github.com/git-tips/tips)项目
Git是一个 “分布式版本管理工具”,简单的理解版本管理工具:大家在写东西的时候都用过 “回撤” 这个功能,但是回撤只能回撤几步,假如想要找回我三天之前的修改,光用 “回撤” 是找不回来的。而 “版本管理工具” 能记录每次的修改,只要提交到版本仓库,你就可以找到之前任何时刻的状态(文本状态)。
2016-07-23 10:09:16 +08:00
下面的内容就是列举了常用的 Git 命令和一些小技巧,可以通过 "页面内查找" 的方式进行快速查询:`Ctrl/Command+f`。
2016-07-23 10:09:16 +08:00
2016-07-23 09:45:01 +08:00
## 开卷必读
*如果之前未使用过 Git可以学习 [Git 小白教程](http://rogerdudler.github.io/git-guide/index.zh.html)入门*
2016-07-23 09:45:01 +08:00
1. **一定要先测试命令的效果后**,再用于工作环境中,以防造成不能弥补的后果!**到时候别拿着砍刀来找我**
2. 所有的命令都在`git version 2.7.4 (Apple Git-66)`下测试通过
3. 统一概念:
- 工作区:改动(增删文件和内容)
- 暂存区:输入命令:`git add 改动的文件名`,此次改动就放到了 ‘暂存区’
- 本地仓库(简称:本地):输入命令:`git commit 此次修改的描述`,此次改动就放到了 ’本地仓库’,每个 commit我叫它为一个 ‘版本’。
- 远程仓库(简称:远程):输入命令:`git push 远程仓库`,此次改动就放到了 远程仓库GitHub 等)
- commit-id输出命令`git log`,最上面那行 `commit xxxxxx`,后面的字符串就是 commit-id
4. 如果喜欢这个项目,欢迎 Star、提交 Pr、[反馈问题](https://github.com/521xueweihan/git-tips/issues)😊
2016-07-23 09:45:01 +08:00
## 目录
* [展示帮助信息](#展示帮助信息)
* [回到远程仓库的状态](#回到远程仓库的状态)
* [重设第一个commit](#重设第一个commit)
2016-07-28 10:45:46 +08:00
* [展示工作区和暂存区的不同](#展示工作区和暂存区的不同)
2016-07-23 09:45:01 +08:00
* [展示暂存区和最近版本的不同](#展示暂存区和最近版本的不同)
* [展示暂存区、工作区和最近版本的不同](#展示暂存区工作区和最近版本的不同)
2019-04-12 14:41:14 +08:00
* [快速切换分支上一个分支](#快速切换分支上一个分支)
* [删除已经合并到 master 的分支](#删除已经合并到-master-的分支)
2016-11-23 18:45:50 +08:00
* [展示本地分支关联远程仓库的情况](#展示本地分支关联远程仓库的情况)
2016-07-23 09:45:01 +08:00
* [关联远程分支](#关联远程分支)
2016-11-23 18:45:50 +08:00
* [列出所有远程分支](#列出所有远程分支)
* [列出本地和远程分支](#列出本地和远程分支)
* [创建并切换到本地分支](#创建并切换到本地分支)
2018-05-15 21:35:10 +08:00
* [从远程分支中创建并切换到本地分支](#从远程分支中创建并切换到本地分支)
2016-07-23 09:45:01 +08:00
* [删除本地分支](#删除本地分支)
* [删除远程分支](#删除远程分支)
2016-11-23 18:45:50 +08:00
* [重命名本地分支](#重命名本地分支)
* [查看标签](#查看标签)
2018-12-03 11:27:31 +08:00
* [查看标签详细信息](#查看标签详细信息)
2016-08-10 11:41:29 +08:00
* [本地创建标签](#本地创建标签)
* [推送标签到远程仓库](#推送标签到远程仓库)
* [删除本地标签](#删除本地标签)
* [删除远程标签](#删除远程标签)
* [切回到某个标签](#切回到某个标签)
2016-07-23 09:45:01 +08:00
* [放弃工作区的修改](#放弃工作区的修改)
2017-06-05 13:33:27 +08:00
* [恢复删除的文件](#恢复删除的文件)
* [以新增一个 commit 的方式还原某一个 commit 的修改](#以新增一个-commit-的方式还原某一个-commit-的修改)
* [回到某个 commit 的状态,并删除后面的 commit](#回到某个-commit-的状态并删除后面的-commit)
* [修改上一个 commit 的描述](#修改上一个-commit-的描述)
* [查看 commit 历史](#查看-commit-历史)
* [显示本地更新过 HEAD 的 git 命令记录](#显示本地更新过-head-的-git-命令记录)
2016-07-23 09:45:01 +08:00
* [修改作者名](#修改作者名)
* [修改远程仓库的 url](#修改远程仓库的-url)
2016-11-23 18:45:50 +08:00
* [增加远程仓库](#增加远程仓库)
2016-07-23 09:45:01 +08:00
* [列出所有远程仓库](#列出所有远程仓库)
* [查看两个星期内的改动](#查看两个星期内的改动)
* [把 A 分支的某一个 commit放到 B 分支上](#把-A-分支的某一个-commit-放到-B-分支上)
* [给 git 命令起别名](#给-git-命令起别名)
* [存储当前的修改,但不用提交 commit](#存储当前的修改但不用提交-commit)
* [保存当前状态,包括 untracked 的文件](#保存当前状态包括-untracked-的文件)
* [展示所有 stashes](#展示所有-stashes)
* [回到某个 stash 的状态](#回到某个-stash-的状态)
* [回到最后一个 stash 的状态,并删除这个 stash](#回到最后一个-stash-的状态并删除这个-stash)
* [删除所有的 stash](#删除所有的-stash)
* [从 stash 中拿出某个文件的修改](#从-stash-中拿出某个文件的修改)
* [展示所有 tracked 的文件](#展示所有-tracked-的文件)
* [展示所有 untracked 的文件](#展示所有-untracked-的文件)
2016-07-23 09:45:01 +08:00
* [展示所有忽略的文件](#展示所有忽略的文件)
* [强制删除 untracked 的文件](#强制删除-untracked-的文件)
* [强制删除 untracked 的目录](#强制删除-untracked-的目录)
* [展示简化的 commit 历史](#展示简化的-commit-历史)
2016-08-06 08:41:14 +08:00
* [查看某段代码是谁写的](#查看某段代码是谁写的)
2016-07-23 09:45:01 +08:00
* [把某一个分支到导出成一个文件](#把某一个分支到导出成一个文件)
* [从包中导入分支](#从包中导入分支)
* [执行 rebase 之前自动 stash](#执行-rebase-之前自动-stash)
* [从远程仓库根据 ID拉下某一状态到本地分支](#从远程仓库根据-ID-拉下某一状态-到本地分支)
2016-07-23 09:45:01 +08:00
* [详细展示一行中的修改](#详细展示一行中的修改)
* [清除 `.gitignore` 文件中记录的文件](#清除-gitignore-文件中记录的文件)
* [展示所有 alias 和 configs](#展示所有-alias-和-configs)
2016-07-23 09:45:01 +08:00
* [展示忽略的文件](#展示忽略的文件)
* [commit 历史中显示 Branch1 有的,但是 Branch2 没有 commit](#commit-历史中显示-Branch1-有的但是-Branch2-没有-commit)
* [在 commit log 中显示 GPG 签名](#在-commit-log-中显示-GPG-签名)
2016-07-23 09:45:01 +08:00
* [删除全局设置](#删除全局设置)
* [新建并切换到新分支上,同时这个分支没有任何 commit](#新建并切换到新分支上同时这个分支没有任何-commit)
2016-07-23 09:45:01 +08:00
* [展示任意分支某一文件的内容](#展示任意分支某一文件的内容)
* [clone 下来指定的单一分支](#clone-下来指定的单一分支)
2016-11-23 18:45:50 +08:00
* [忽略某个文件的改动](#忽略某个文件的改动)
2016-08-11 17:30:48 +08:00
* [忽略文件的权限变化](#忽略文件的权限变化)
* [以最后提交的顺序列出所有 Git 分支](#以最后提交的顺序列出所有-Git-分支)
* [在 commit log 中查找相关内容](#在-commit-log-中查找相关内容)
* [把暂存区的指定 file 放到工作区中](#把暂存区的指定-file-放到工作区中)
2016-07-23 09:45:01 +08:00
* [强制推送](#强制推送)
2018-12-26 09:36:48 +08:00
* [一图详解](#一图详解)
2016-07-23 09:45:01 +08:00
* [联系我](#联系我)
2016-07-15 20:17:53 +08:00
## 展示帮助信息
2016-07-15 20:17:53 +08:00
```sh
git help -g
```
The command output as below:
```
The common Git guides are:
attributes Defining attributes per path
cli Git command-line interface and conventions
core-tutorial A Git core tutorial for developers
cvs-migration Git for CVS users
diffcore Tweaking diff output
everyday A useful minimum set of commands for Everyday Git
glossary A Git Glossary
hooks Hooks used by Git
ignore Specifies intentionally untracked files to ignore
modules Defining submodule properties
namespaces Git namespaces
repository-layout Git Repository Layout
revisions Specifying revisions and ranges for Git
tutorial A tutorial introduction to Git
tutorial-2 A tutorial introduction to Git: part two
workflows An overview of recommended workflows with Git
'git help -a' and 'git help -g' list available subcommands and some concept guides. See 'git help <command>' or 'git help <concept>' to read about a specific subcommand or concept.
```
2016-07-15 20:17:53 +08:00
## 回到远程仓库的状态
抛弃本地所有的修改,回到远程仓库的状态。
2016-07-15 20:17:53 +08:00
```sh
git fetch --all && git reset --hard origin/master
```
## 重设第一个 commit
也就是把所有的改动都重新放回工作区,并**清空所有的 commit**,这样就可以重新提交第一个 commit 了
2016-07-15 20:17:53 +08:00
```sh
git update-ref -d HEAD
```
2016-07-28 10:45:46 +08:00
## 展示工作区和暂存区的不同
输出**工作区**和**暂存区**的 different (不同)。
2016-07-15 20:17:53 +08:00
```sh
git diff
```
还可以展示本地仓库中任意两个 commit 之间的文件变动:
2016-08-11 17:30:48 +08:00
```sh
git diff <commit-id> <commit-id>
```
2016-07-15 20:17:53 +08:00
## 展示暂存区和最近版本的不同
2019-04-01 21:57:04 +08:00
输出**暂存区**和本地最近的版本 (commit) 的 different (不同)。
2016-07-15 20:17:53 +08:00
```sh
git diff --cached
```
## 展示暂存区、工作区和最近版本的不同
输出**工作区**、**暂存区** 和本地最近的版本 (commit) 的 different (不同)。
2016-07-15 20:17:53 +08:00
```sh
git diff HEAD
```
## 快速切换分支上一个分支
2016-07-15 20:17:53 +08:00
```sh
git checkout -
```
## 删除已经合并到 master 的分支
2016-07-15 20:17:53 +08:00
```sh
git branch --merged master | grep -v '^\*\| master' | xargs -n 1 git branch -d
```
2016-11-23 18:45:50 +08:00
## 展示本地分支关联远程仓库的情况
2016-07-15 20:17:53 +08:00
```sh
git branch -vv
```
## 关联远程分支
关联之后,`git branch -vv` 就可以展示关联的远程分支名了,同时推送到远程仓库直接:`git push`,不需要指定远程仓库了。
2016-07-15 20:17:53 +08:00
```sh
git branch -u origin/mybranch
```
或者在 push 时加上 `-u` 参数
2016-08-06 08:41:14 +08:00
```sh
git push origin/mybranch -u
```
2016-11-23 18:45:50 +08:00
## 列出所有远程分支
-r 参数相当于remote
2016-11-23 18:45:50 +08:00
```sh
git branch -r
```
## 列出本地和远程分支
-a 参数相当于all
2016-11-23 18:45:50 +08:00
```sh
git branch -a
```
## 创建并切换到本地分支
```sh
git checkout -b <branch-name>
```
2018-05-15 21:35:10 +08:00
## 从远程分支中创建并切换到本地分支
2016-11-23 18:45:50 +08:00
```sh
git checkout -b <branch-name> origin/<branch-name>
```
2016-07-15 20:17:53 +08:00
## 删除本地分支
2016-07-15 20:17:53 +08:00
```sh
2016-08-10 11:49:47 +08:00
git branch -d <local-branchname>
2016-07-15 20:17:53 +08:00
```
## 删除远程分支
2016-07-15 20:17:53 +08:00
```sh
2016-08-10 11:49:47 +08:00
git push origin --delete <remote-branchname>
2016-07-15 20:17:53 +08:00
```
或者
2016-07-15 20:17:53 +08:00
```sh
2016-08-10 11:49:47 +08:00
git push origin :<remote-branchname>
2016-07-15 20:17:53 +08:00
```
2016-11-23 18:45:50 +08:00
## 重命名本地分支
2016-11-23 18:45:50 +08:00
```sh
git branch -m <new-branch-name>
```
## 查看标签
```sh
2016-08-10 11:41:29 +08:00
git tag
```
展示当前分支的最近的 tag
2016-08-10 11:41:29 +08:00
```sh
git describe --tags --abbrev=0
```
2018-12-03 11:27:31 +08:00
## 查看标签详细信息
```sh
2018-12-03 11:27:31 +08:00
git tag -ln
```
## 本地创建标签
2016-08-10 11:41:29 +08:00
```sh
git tag <version-number>
```
默认 tag 是打在最近的一次 commit 上,如果需要指定 commit 打 tag
2016-08-10 11:41:29 +08:00
```sh
$ git tag -a <version-number> -m "v1.0 发布(描述)" <commit-id>
```
## 推送标签到远程仓库
2016-08-10 11:41:29 +08:00
首先要保证本地创建好了标签才可以推送标签到远程仓库:
2016-08-10 11:41:29 +08:00
```sh
git push origin <local-version-number>
```
一次性推送所有标签,同步到远程仓库:
```sh
2016-08-10 11:41:29 +08:00
git push origin --tags
```
## 删除本地标签
2016-07-15 20:17:53 +08:00
```sh
git tag -d <tag-name>
```
2016-08-10 11:41:29 +08:00
## 删除远程标签
删除远程标签需要**先删除本地标签**,再执行下面的命令:
2016-07-15 20:17:53 +08:00
```sh
git push origin :refs/tags/<tag-name>
```
## 切回到某个标签
一般上线之前都会打 tag就是为了防止上线后出现问题方便快速回退到上一版本。下面的命令是回到某一标签下的状态
```sh
git checkout -b branch_name tag_name
```
## 放弃工作区的修改
2016-07-15 20:17:53 +08:00
```sh
2016-08-10 11:49:47 +08:00
git checkout <file-name>
2016-07-15 20:17:53 +08:00
```
放弃所有修改:
2016-07-15 20:17:53 +08:00
```sh
git checkout .
2016-07-15 20:17:53 +08:00
```
2017-06-05 13:33:27 +08:00
## 恢复删除的文件
```sh
git rev-list -n 1 HEAD -- <file_path> #得到 deleting_commit
git checkout <deleting_commit>^ -- <file_path> #回到删除文件 deleting_commit 之前的状态
```
## 以新增一个 commit 的方式还原某一个 commit 的修改
2016-07-15 20:17:53 +08:00
```sh
git revert <commit-id>
2016-07-15 20:17:53 +08:00
```
## 回到某个 commit 的状态,并删除后面的 commit
和 revert 的区别reset 命令会抹去某个 commit id 之后的所有 commit
2018-12-03 11:27:31 +08:00
2016-07-15 20:17:53 +08:00
```sh
git reset <commit-id> #默认就是-mixed参数。
2017-07-30 23:19:34 +08:00
git reset mixed HEAD^ #回退至上个版本它将重置HEAD到另外一个commit,并且重置暂存区以便和HEAD相匹配但是也到此为止。工作区不会被更改。
git reset soft HEAD~3 #回退至三个版本之前只回退了commit的信息暂存区和工作区与回退之前保持一致。如果还要提交直接commit即可  
2017-07-30 23:19:34 +08:00
git reset hard <commit-id> #彻底回退到指定commit-id的状态暂存区和工作区也会变为指定commit-id版本的内容
2016-07-15 20:17:53 +08:00
```
## 修改上一个 commit 的描述
2016-07-15 20:17:53 +08:00
```sh
git commit --amend
2016-07-15 20:17:53 +08:00
```
## 查看 commit 历史
2016-07-15 20:17:53 +08:00
```sh
git log
2016-07-15 20:17:53 +08:00
```
2016-08-06 08:41:14 +08:00
## 查看某段代码是谁写的
blame 的意思为‘责怪’,你懂的。
2016-08-06 08:41:14 +08:00
```sh
2016-08-10 11:49:47 +08:00
git blame <file-name>
2016-08-06 08:41:14 +08:00
```
## 显示本地更新过 HEAD 的 git 命令记录
每次更新了 HEAD 的 git 命令比如 commint、amend、cherry-pick、reset、revert 等都会被记录下来(不限分支),就像 shell 的 history 一样。
这样你可以 reset 到任何一次更新了 HEAD 的操作之后,而不仅仅是回到当前分支下的某个 commit 之后的状态。
```sh
git reflog
```
## 修改作者名
2016-07-15 20:17:53 +08:00
```sh
git commit --amend --author='Author Name <email@address.com>'
2016-07-15 20:17:53 +08:00
```
## 修改远程仓库的 url
2016-07-15 20:17:53 +08:00
```sh
git remote set-url origin <URL>
```
2016-11-23 18:45:50 +08:00
## 增加远程仓库
2016-07-15 20:17:53 +08:00
```sh
2016-11-23 18:45:50 +08:00
git remote add origin <remote-url>
2016-07-15 20:17:53 +08:00
```
2016-11-23 18:45:50 +08:00
## 列出所有远程仓库
2016-07-15 20:17:53 +08:00
```sh
2016-11-23 18:45:50 +08:00
git remote
2016-07-15 20:17:53 +08:00
```
## 查看两个星期内的改动
```sh
git whatchanged --since='2 weeks ago'
```
## 把 A 分支的某一个 commit放到 B 分支上
这个过程需要 `cherry-pick` 命令,[参考](http://sg552.iteye.com/blog/1300713#bc2367928)
2016-07-15 20:17:53 +08:00
```sh
git checkout <branch-name> && git cherry-pick <commit-id>
2016-07-15 20:17:53 +08:00
```
## 给 git 命令起别名
简化命令
2016-07-15 20:17:53 +08:00
```sh
git config --global alias.<handle> <command>
2016-07-15 20:17:53 +08:00
比如git status 改成 git st这样可以简化命令
2016-07-15 20:17:53 +08:00
git config --global alias.st status
```
## 存储当前的修改,但不用提交 commit
详解可以参考[廖雪峰老师的 git 教程](http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000/00137602359178794d966923e5c4134bc8bf98dfb03aea3000)
2016-07-15 20:17:53 +08:00
```sh
git stash
```
## 保存当前状态,包括 untracked 的文件
untracked 文件:新建的文件
2016-07-15 20:17:53 +08:00
```sh
git stash -u
2016-07-15 20:17:53 +08:00
```
## 展示所有 stashes
2016-07-15 20:17:53 +08:00
```sh
git stash list
```
## 回到某个 stash 的状态
2016-07-15 20:17:53 +08:00
```sh
git stash apply <stash@{n}>
```
## 回到最后一个 stash 的状态,并删除这个 stash
2016-07-15 20:17:53 +08:00
```sh
git stash pop
```
## 删除所有的 stash
2016-07-15 20:17:53 +08:00
```sh
git stash clear
```
## 从 stash 中拿出某个文件的修改
2016-07-15 20:17:53 +08:00
```sh
2016-08-10 11:49:47 +08:00
git checkout <stash@{n}> -- <file-path>
2016-07-15 20:17:53 +08:00
```
## 展示所有 tracked 的文件
2016-07-15 20:17:53 +08:00
```sh
git ls-files -t
```
## 展示所有 untracked 的文件
2016-07-15 20:17:53 +08:00
```sh
git ls-files --others
```
2016-07-18 23:21:22 +08:00
## 展示所有忽略的文件
2016-07-15 20:17:53 +08:00
```sh
git ls-files --others -i --exclude-standard
```
## 强制删除 untracked 的文件
可以用来删除新建的文件。如果不指定文件文件名,则清空所有工作的 untracked 文件。`clean` 命令,**注意两点**
1. clean 后,删除的文件无法找回
2. 不会影响 tracked 的文件的改动,只会删除 untracked 的文件
2016-07-15 20:17:53 +08:00
```sh
2016-08-10 11:49:47 +08:00
git clean <file-name> -f
2016-07-15 20:17:53 +08:00
```
## 强制删除 untracked 的目录
可以用来删除新建的目录,**注意**:这个命令也可以用来删除 untracked 的文件。详情见上一条
2016-07-15 20:17:53 +08:00
```sh
2016-08-10 11:49:47 +08:00
git clean <directory-name> -df
2016-07-15 20:17:53 +08:00
```
## 展示简化的 commit 历史
2016-07-15 20:17:53 +08:00
```sh
git log --pretty=oneline --graph --decorate --all
```
2016-07-19 22:52:34 +08:00
## 把某一个分支到导出成一个文件
2016-07-15 20:17:53 +08:00
```sh
git bundle create <file> <branch-name>
```
2016-07-19 22:52:34 +08:00
## 从包中导入分支
新建一个分支,分支内容就是上面 `git bundle create` 命令导出的内容
2016-07-15 20:17:53 +08:00
```sh
git clone repo.bundle <repo-dir> -b <branch-name>
```
## 执行 rebase 之前自动 stash
2016-07-15 20:17:53 +08:00
```sh
git rebase --autostash
```
## 从远程仓库根据 ID拉下某一状态到本地分支
2016-07-15 20:17:53 +08:00
```sh
git fetch origin pull/<id>/head:<branch-name>
```
## 详细展示一行中的修改
2016-07-15 20:17:53 +08:00
```sh
git diff --word-diff
```
## 清除 gitignore 文件中记录的文件
2016-07-15 20:17:53 +08:00
```sh
git clean -X -f
```
## 展示所有 alias 和 configs
**注意:** config 分为当前目录local和全局golbal的 config默认为当前目录的 config
2016-10-17 20:25:50 +08:00
2016-07-15 20:17:53 +08:00
```sh
2016-10-17 20:25:50 +08:00
git config --local --list (当前目录)
git config --global --list (全局)
2016-07-15 20:17:53 +08:00
```
## 展示忽略的文件
```sh
git status --ignored
```
## commit 历史中显示 Branch1 有的,但是 Branch2 没有 commit
2016-07-15 20:17:53 +08:00
```sh
git log Branch1 ^Branch2
```
## 在 commit log 中显示 GPG 签名
2016-07-15 20:17:53 +08:00
```sh
git log --show-signature
```
## 删除全局设置
2016-07-15 20:17:53 +08:00
```sh
git config --global --unset <entry-name>
```
## 新建并切换到新分支上,同时这个分支没有任何 commit
相当于保存修改,但是重写 commit 历史
2016-07-15 20:17:53 +08:00
```sh
2016-08-10 11:49:47 +08:00
git checkout --orphan <branch-name>
2016-07-15 20:17:53 +08:00
```
## 展示任意分支某一文件的内容
2016-07-15 20:17:53 +08:00
```sh
2016-08-10 11:49:47 +08:00
git show <branch-name>:<file-name>
2016-07-15 20:17:53 +08:00
```
## clone 下来指定的单一分支
2016-07-15 20:17:53 +08:00
```sh
git clone -b <branch-name> --single-branch https://github.com/user/repo.git
```
2016-11-23 18:45:50 +08:00
## 忽略某个文件的改动
2016-11-23 18:45:50 +08:00
关闭 track 指定文件的改动,也就是 Git 将不会在记录这个文件的改动
```sh
2016-11-23 18:45:50 +08:00
git update-index --assume-unchanged path/to/file
```
恢复 track 指定文件的改动
```sh
2016-11-23 18:45:50 +08:00
git update-index --no-assume-unchanged path/to/file
2016-07-15 20:17:53 +08:00
```
2016-08-11 17:30:48 +08:00
## 忽略文件的权限变化
2016-08-11 17:30:48 +08:00
不再将文件的权限变化视作改动
2016-07-15 20:17:53 +08:00
```sh
git config core.fileMode false
```
## 以最后提交的顺序列出所有 Git 分支
最新的放在最上面
2016-07-15 20:17:53 +08:00
```sh
git for-each-ref --sort=-committerdate --format='%(refname:short)' refs/heads/
```
## 在 commit log 中查找相关内容
通过 grep 查找given-text所需要查找的字段
2016-07-15 20:17:53 +08:00
```sh
git log --all --grep='<given-text>'
```
## 把暂存区的指定 file 放到工作区中
不添加参数,默认是 `-mixed`
2018-12-03 11:27:31 +08:00
2016-07-15 20:17:53 +08:00
```sh
git reset <file-name>
```
## 强制推送
2016-07-15 20:17:53 +08:00
```sh
git push -f <remote-name> <branch-name>
```
2018-12-26 09:36:48 +08:00
## 一图详解
![](git.png)
2016-07-15 20:17:53 +08:00
## 联系我
- 博客园:[削微寒](http://www.cnblogs.com/xueweihan/)
- 或者直接提 PrIssues
2016-07-23 09:45:01 +08:00
**[⬆ 返回顶部](#目录)**