从01开始 从01开始
首页
  • 计算机科学导论
  • 数字电路
  • 计算机组成原理

    • 计算机组成原理-北大网课
  • 操作系统
  • Linux
  • Docker
  • 计算机网络
  • 计算机常识
  • Git
  • JavaSE
  • Java高级
  • JavaEE

    • Ant
    • Maven
    • Log4j
    • Junit
    • JDBC
    • XML-JSON
  • JavaWeb

    • 服务器软件
    • Servlet
  • Spring
  • 主流框架

    • Redis
    • Mybatis
    • Lucene
    • Elasticsearch
    • RabbitMQ
    • MyCat
    • Lombok
  • SpringMVC
  • SpringBoot
  • 学习网课的心得
  • 输入法
  • 节假日TodoList
  • 其他
  • 关于本站
  • 网站日记
  • 友人帐
  • 如何搭建一个博客
GitHub (opens new window)

peterjxl

人生如逆旅,我亦是行人
首页
  • 计算机科学导论
  • 数字电路
  • 计算机组成原理

    • 计算机组成原理-北大网课
  • 操作系统
  • Linux
  • Docker
  • 计算机网络
  • 计算机常识
  • Git
  • JavaSE
  • Java高级
  • JavaEE

    • Ant
    • Maven
    • Log4j
    • Junit
    • JDBC
    • XML-JSON
  • JavaWeb

    • 服务器软件
    • Servlet
  • Spring
  • 主流框架

    • Redis
    • Mybatis
    • Lucene
    • Elasticsearch
    • RabbitMQ
    • MyCat
    • Lombok
  • SpringMVC
  • SpringBoot
  • 学习网课的心得
  • 输入法
  • 节假日TodoList
  • 其他
  • 关于本站
  • 网站日记
  • 友人帐
  • 如何搭建一个博客
GitHub (opens new window)
  • 计算机历史

  • 数字电路

  • 计算机组成原理

  • 汇编语言

  • C语言

  • 数据结构

  • 操作系统

  • Linux

  • 计算机网络

  • Git

    • 版本控制
    • 安装和配置
    • 初识版本库
    • 版本管理
    • 工作区、暂存区和修改
    • 远程仓库
    • 分支管理
    • GitStash
    • 远程仓库和分支
    • 标签管理
    • 自定义Git
    • 使用可视化工具
    • GithubAction
    • 常用Git命令
    • Git系列小结
      • 稍微聊聊commit
      • 练习PR
      • Git help
      • 深入学习
      • 参考资料
    • Git
  • 数据库

  • 计算机小知识

  • 编译原理

  • 名人堂

  • 计算机基础
  • Git
2023-01-17
目录

Git系列小结

# 14.Git系列小结

‍

Git是一个非常常用的工具,学习它是很有必要的,我们花了大量的篇幅来讲解和实践,现在有必要小结一下了。

  ‍

# 稍微聊聊commit

git commit 是很小的一件事情,但是往往小的事情往往引不起大家的关注,如果你查看 commit log,都只有简单的几个词的描述的话,是完全不知道这些 commit 是要做啥的,推荐阅读:Git 最佳实践:commit msg (opens new window)

‍

我们可以在Git的提交信息里带一些emoji表情的话,使得可读性变得更高,例如:

🎨 :art:​ 改进代码结构/代码格式

⚡️ :zap:​ 提升性能

🔥 :fire:​ 移除代码或文件

🐛 :bug:​ 修复bug

⏪ :rewind:​ 回退修改

🔀 :twisted_rightwards_arrows:​ 合并分支

更多emoji,请参考:gitmoji | An emoji guide for your commit messages (opens new window),推荐另存为一个文件到本地。

‍

怎么用呢?直接在commit 的信息里输入即可:

$ git commit -m ":art: 测试emoji"
[master 8a941c2] :art: 测试emoji
 1 file changed, 1 insertion(+)

1
2
3
4

‍

效果:

​​

‍

# 练习PR

如果你想练习pull request,那就Fork一下我的仓库,在5-Attainment文件夹下创建一个your-github-id.txt​的文本文件,写点自己学习Git的心得,然后推送一个pull request给我,我会视心情而定是否接受。

‍

‍

# Git help

我们可以使用 git help 来查看帮助,该命令会列举出常用的命令和介绍:

> git help
usage: git [--version] [--help] [-C <path>] [-c <name>=<value>]
           [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]
           [-p | --paginate | -P | --no-pager] [--no-replace-objects] [--bare]
           [--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]
           [--super-prefix=<path>] [--config-env=<name>=<envvar>]
           <command> [<args>]

These are common Git commands used in various situations:

start a working area (see also: git help tutorial)
   clone             Clone a repository into a new directory
   init              Create an empty Git repository or reinitialize an existing one

work on the current change (see also: git help everyday)
   add               Add file contents to the index
   mv                Move or rename a file, a directory, or a symlink
   restore           Restore working tree files
   rm                Remove files from the working tree and from the index
   sparse-checkout   Initialize and modify the sparse-checkout

examine the history and state (see also: git help revisions)
   bisect            Use binary search to find the commit that introduced a bug
   diff              Show changes between commits, commit and working tree, etc
   grep              Print lines matching a pattern
   log               Show commit logs
   show              Show various types of objects
   status            Show the working tree status

grow, mark and tweak your common history
   branch            List, create, or delete branches
   commit            Record changes to the repository
   merge             Join two or more development histories together
   rebase            Reapply commits on top of another base tip
   reset             Reset current HEAD to the specified state
   switch            Switch branches
   tag               Create, list, delete or verify a tag object signed with GPG

collaborate (see also: git help workflows)
   fetch             Download objects and refs from another repository
   pull              Fetch from and integrate with another repository or a local branch
   push              Update remote refs along with associated objects

'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.
See 'git help git' for an overview of the system.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47

‍

想查看全部命令,可以使用git help -a​ 或者​ git help -all​,使用后就好比用vim打开了一个页面,可通过J​键和K​键上下滑动、q​键退出

‍

‍

打开帮助文档:一些简单的命令可以在命令行里查看,但如果要查看更多文档,可以查看Git自带的帮助文档:在命令行里输入 git help git后,就会打开:

​​

‍

如果想看某个命令的帮助文档,可以使用git help 命令。例如git help pull​:

​​

‍

‍

# 深入学习

想深入学习Git的读者,可参考这些书籍:10本 Git 版本管理学习书籍推荐 - 世界读书月 - 知乎 (opens new window)

‍

‍

# 参考资料

  1. Git教程 - 廖雪峰 (opens new window)
  2. 《Git权威指南》 蒋鑫著
  3. Git - Book (opens new window):官方出版的书籍,可在线观看和下载电子版,也叫《Pro Git》
  4. Git忽略提交规则 - .gitignore配置运维总结 - 散尽浮华 - 博客园 (opens new window)
  5. Git基础-删除文件 rm/git rm 命令详解_NorthCastle的博客-CSDN博客 (opens new window)
  6. 软件开发|Git 教程:重命名分支、删除分支、查看分支作者 (opens new window)
  7. Git基础-git diff 比较文件的差异_NorthCastle的博客-CSDN博客 (opens new window)
  8. Git 最佳实践:commit msg (opens new window)

‍

在GitHub上编辑此页 (opens new window)
上次更新: 2023/4/29 21:37:53
常用Git命令
Git

← 常用Git命令 Git→

Theme by Vdoing | Copyright © 2022-2023 粤ICP备2022067627号-1 粤公网安备 44011302003646号
  • 跟随系统
  • 浅色模式
  • 深色模式
  • 阅读模式