当前位置:   article > 正文

【Git版本控制】Git命令详解_git checkout --

git checkout --

文章目录

前言

Git 是一个分布式版本管理工具,版本管理工具就是大家在写东西的时候都用过 回撤这个功能,但是回撤只能回撤几步,假如想要找回我三天之前的修改,光用回撤是找不回来的。而版本管理工具能记录每次的修改,只要提交到版本仓库,就可以找到之前任何时刻的状态(文本状态)。

下面的内容就是列举了常用的 Git 命令和一些小技巧,可以通过页面内查找的方式 Ctrl/Command+f 进行快速查找。

1.展示帮助信息

git help -g
  • 1

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.
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

2.回到远程仓库的状态

抛弃本地所有的修改,回到远程仓库的状态。

git fetch --all && git reset --hard origin/master
  • 1

3.重设第一个 commit

也就是把所有的改动都重新放回工作区,并清空所有的 commit,这样就可以重新提交第一个 commit 了

git update-ref -d HEAD
  • 1

4.查看冲突文件列表

展示工作区的冲突文件列表

git diff --name-only --diff-filter=U
  • 1

5.展示工作区和暂存区的不同

输出工作区暂存区的 different (不同)。

git diff
  • 1

还可以展示本地仓库中任意两个 commit 之间的文件变动:

git diff <commit-id> <commit-id>
  • 1

6.展示暂存区和最近版本的不同

输出暂存区和本地最近的版本 (commit) 的 different (不同)。

git diff --cached
  • 1

7.展示暂存区、工作区和最近版本的不同

输出工作区暂存区 和本地最近的版本 (commit) 的 different (不同)。

git diff HEAD
  • 1

8.快速切换到上一个分支

git checkout -
  • 1

9.删除已经合并到 master 的分支

git branch --merged master | grep -v '^\*\|  master' | xargs -n 1 git branch -d
  • 1

10.展示本地分支关联远程仓库的情况

git branch -vv
  • 1

11.关联远程分支

关联之后,git branch -vv 就可以展示关联的远程分支名了,同时推送到远程仓库直接:git push,不需要指定远程仓库了。

git branch -u origin/mybranch
  • 1

或者在 push 时加上 -u 参数

git push origin/mybranch -u
  • 1

12.列出所有远程分支

-r 参数相当于:remote

git branch -r
  • 1

13.列出本地和远程分支

-a 参数相当于:all

git branch -a
  • 1

14.查看远程分支和本地分支的对应关系

git remote show origin
  • 1

15.远程删除了分支本地也想删除

git remote prune origin
  • 1

16.创建并切换到本地分支

git checkout -b <branch-name>
  • 1

17.从远程分支中创建并切换到本地分支

git checkout -b <branch-name> origin/<branch-name>
  • 1

18.删除本地分支

git branch -d <local-branchname>
  • 1

19.删除远程分支

git push origin --delete <remote-branchname>
  • 1

或者

git push origin :<remote-branchname>
  • 1

20.重命名本地分支

git branch -m <new-branch-name>
  • 1

21.查看标签

git tag
  • 1

展示当前分支的最近的 tag

git describe --tags --abbrev=0
  • 1

22.查看标签详细信息

git tag -ln
  • 1

23.本地创建标签

git tag <version-number>
  • 1

默认 tag 是打在最近的一次 commit 上,如果需要指定 commit 打 tag:

$ git tag -a <version-number> -m "v1.0 发布(描述)" <commit-id>
  • 1

24.推送标签到远程仓库

首先要保证本地创建好了标签才可以推送标签到远程仓库:

git push origin <local-version-number>
  • 1

一次性推送所有标签,同步到远程仓库:

git push origin --tags
  • 1

25.删除本地标签

git tag -d <tag-name>
  • 1

26.删除远程标签

git push origin --delete tag <tagname>
  • 1

27.切回到某个标签

一般上线之前都会打 tag,就是为了防止上线后出现问题,方便快速回退到上一版本。下面的命令是回到某一标签下的状态:

git checkout -b branch_name tag_name
  • 1

28.放弃工作区的修改

git checkout <file-name>
  • 1

放弃所有修改:

git checkout .
  • 1

29.恢复删除的文件

git rev-list -n 1 HEAD -- <file_path> #得到 deleting_commit

git checkout <deleting_commit>^ -- <file_path> #回到删除文件 deleting_commit 之前的状态
  • 1
  • 2
  • 3

30.以新增一个 commit 的方式还原某一个 commit 的修改

git revert <commit-id>
  • 1

31.回到某个 commit 的状态,并删除后面的 commit

revert 的区别:reset 命令会抹去某个 commit id 之后的所有 commit

git reset <commit-id>  #默认就是-mixed参数。

git reset --mixed HEAD^  #回退至上个版本,它将重置HEAD到另外一个commit,并且重置暂存区以便和HEAD相匹配,但是也到此为止。工作区不会被更改。

git reset --soft HEAD~3  #回退至三个版本之前,只回退了commit的信息,暂存区和工作区与回退之前保持一致。如果还要提交,直接commit即可  

git reset --hard <commit-id>  #彻底回退到指定commit-id的状态,暂存区和工作区也会变为指定commit-id版本的内容
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

32.修改上一个 commit 的描述

如果暂存区有改动,同时也会将暂存区的改动提交到上一个 commit

git commit --amend
  • 1

33.查看 commit 历史

git log
  • 1

34.查看某段代码是谁写的

blame 的意思为‘责怪’,你懂的。

git blame <file-name>
  • 1

35.显示本地更新过 HEAD 的 git 命令记录

每次更新了 HEAD 的 git 命令比如 commit、amend、cherry-pick、reset、revert 等都会被记录下来(不限分支),就像 shell 的 history 一样。 这样你可以 reset 到任何一次更新了 HEAD 的操作之后,而不仅仅是回到当前分支下的某个 commit 之后的状态。

git reflog
  • 1

36.修改作者名

git commit --amend --author='Author Name <email@address.com>'
  • 1

37.修改远程仓库的 url

git remote set-url origin <URL>
  • 1

38.增加远程仓库

git remote add origin <remote-url>
  • 1

39.列出所有远程仓库

git remote
  • 1

40.查看两个星期内的改动

git whatchanged --since='2 weeks ago'
  • 1

41.把 A 分支的某一个 commit,放到 B 分支上

这个过程需要 cherry-pick 命令,参考

git checkout <branch-name> && git cherry-pick <commit-id>
  • 1

42.给 git 命令起别名

简化命令

git config --global alias.<handle> <command>

比如:git status 改成 git st,这样可以简化命令

git config --global alias.st status
  • 1
  • 2
  • 3
  • 4
  • 5

43.存储当前的修改,但不用提交 commit

详解可以参考廖雪峰老师的 git 教程

git stash
  • 1

44.保存当前状态,包括 untracked 的文件

untracked 文件:新建的文件

git stash -u
  • 1

45.展示所有 stashes

git stash list
  • 1

46.回到某个 stash 的状态

git stash apply <stash@{n}>
  • 1

47.回到最后一个 stash 的状态,并删除这个 stash

git stash pop
  • 1

48.删除所有的 stash

git stash clear
  • 1

49.从 stash 中拿出某个文件的修改

git checkout <stash@{n}> -- <file-path>
  • 1

50.展示所有 tracked 的文件

git ls-files -t
  • 1

51.展示所有 untracked 的文件

git ls-files --others
  • 1

52.展示所有忽略的文件

git ls-files --others -i --exclude-standard
  • 1

53.强制删除 untracked 的文件

可以用来删除新建的文件。如果不指定文件文件名,则清空所有工作的 untracked 文件。clean 命令,注意两点

  1. clean 后,删除的文件无法找回
  2. 不会影响 tracked 的文件的改动,只会删除 untracked 的文件
git clean <file-name> -f
  • 1

54.强制删除 untracked 的目录

可以用来删除新建的目录,注意:这个命令也可以用来删除 untracked 的文件。详情见上一条

git clean <directory-name> -df
  • 1

55.展示简化的 commit 历史

git log --pretty=oneline --graph --decorate --all
  • 1

56.把某一个分支导出成一个文件

git bundle create <file> <branch-name>
  • 1

57.从包中导入分支

新建一个分支,分支内容就是上面 git bundle create 命令导出的内容

git clone repo.bundle <repo-dir> -b <branch-name>
  • 1

58.执行 rebase 之前自动 stash

git rebase --autostash
  • 1

59.从远程仓库根据 ID,拉下某一状态,到本地分支

git fetch origin pull/<id>/head:<branch-name>
  • 1

60.详细展示一行中的修改

git diff --word-diff
  • 1

61.清除 gitignore 文件中记录的文件

git clean -X -f
  • 1

62.展示所有 alias 和 configs

注意: config 分为:当前目录(local)和全局(golbal)的 config,默认为当前目录的 config

git config --local --list (当前目录)
git config --global --list (全局)
  • 1
  • 2

63.展示忽略的文件

git status --ignored
  • 1

64.commit 历史中显示 Branch1 有的,但是 Branch2 没有 commit

git log Branch1 ^Branch2
  • 1

65.在 commit log 中显示 GPG 签名

git log --show-signature
  • 1

66.删除全局设置

git config --global --unset <entry-name>
  • 1

67.新建并切换到新分支上,同时这个分支没有任何 commit

相当于保存修改,但是重写 commit 历史

git checkout --orphan <branch-name>
  • 1

68.展示任意分支某一文件的内容

git show <branch-name>:<file-name>
  • 1

69.clone 下来指定的单一分支

git clone -b <branch-name> --single-branch https://github.com/user/repo.git
  • 1

70.clone 最新一次提交

只会 clone 最近一次提交,将减少 clone 时间

git clone --depth=1 https://github.com/user/repo.git
  • 1

71.忽略某个文件的改动

关闭 track 指定文件的改动,也就是 Git 将不会在记录这个文件的改动

git update-index --assume-unchanged path/to/file
  • 1

恢复 track 指定文件的改动

git update-index --no-assume-unchanged path/to/file
  • 1

72.忽略文件的权限变化

不再将文件的权限变化视作改动

git config core.fileMode false
  • 1

73.以最后提交的顺序列出所有 Git 分支

最新的放在最上面

git for-each-ref --sort=-committerdate --format='%(refname:short)' refs/heads/
  • 1

74.在 commit log 中查找相关内容

通过 grep 查找,given-text:所需要查找的字段

git log --all --grep='<given-text>'
  • 1

75.把暂存区的指定 file 放到工作区中

不添加参数,默认是 -mixed

git reset <file-name>
  • 1

76.强制推送

git push -f <remote-name> <branch-name>
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/610127
推荐阅读
相关标签
  

闽ICP备14008679号