IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 开发工具 -> git commit 常用选项笔记 -> 正文阅读

[开发工具]git commit 常用选项笔记

01 git commit

如果没有设置 -m 选项,直接运行 git commit 会出现什么情况呢?

答案是: Git 会尝试为你打开一个编辑器以填写提交信息。 如果 Git 在你对它的配置中找不到相关信息,默认会打开 vim。如下图:
commit0
接下来,需要键盘敲 i 进入编辑模式,而后在第一行,即红色区域部分填写提交信息:
commit1
信息编辑好之后按 ESC,键盘敲 :wq ,即保存并退出:
commit2
最后你会看到控制台的返回消息:

$ git add .
$ git commit
[master 1bbbda5] init hello
 1 file changed, 1 insertion(+)
 create mode 100644 hello.js

02 git commit -m

 # 方式 1
 git commit -m <msg>
 # 方式 2
 git commit --message=<msg>

描述 :使用给定 msg 作为提交消息,即 Git 就不会打开编辑器了,也就省略了上面的步骤了。

注意-m-c -C -F 是相互排斥的!

03 git commit -a

 # 方式 1
 git commit -a
 # 方式 2
 git commit --all

描述 :修改文件后不需要执行 git add 命令,直接就可以提交。

注意 :新建的文件除外!

04 git commit -p

 # 方式 1
 git commit -p
 # 方式 2
 git commit --patch

描述 :使用交互式界面来选择要提交的更改,让用户有机会在将修改后的内容提交前查看差异。

使用示范

$ git commit -p
diff --git a/hello.js b/hello.js
index 2ccb4c8..31b09bc 100644
--- a/hello.js
+++ b/hello.js
@@ -1,2 +1,3 @@     # ----这里会显示你的修改----
-let hello = 1;     # ----这里会显示你的修改----
+let hello = 123;
 let world = 456;
+let people = 789;  # ----这里会显示你的修改----
(1/1) Stage this hunk [y,n,q,a,d,e,?]?  # 此处需要输入你想要执行的操作
# --------- 下面是每个选项的意思 ---------- 
y - stage this hunk
n - do not stage this hunk
q - quit; do not stage this hunk or any of the remaining ones
a - stage this hunk and all later hunks in the file
d - do not stage this hunk or any of the later hunks in the file
e - manually edit the current hunk
? - print help
# --------- 上面是每个选项的意思 ---------- 

05 git commit -C

 # 方式 1
 git commit -C
 # 方式 2
 git commit --reuse-message=<commit>

描述 :获取现有的提交对象 commitId ,并在创建提交时重用日志消息和作者信息(包括时间戳)。换句话说就是重新使用之前提交过的信息去提交新的更改。

使用示范

# 先查看重用信息的 commitId
$ git log
commit aa63767da23f357136333b7ce18175c414b189ec (HEAD -> master)
Author: xxxxxx<xxxxxx.com>
Date:   Mon Oct 25 16:30:41 2021 +0800

    change hello
    
commit fcadef453058fb4b97b7c0cbc2994bed3a81302e
Author: xxxxxx<xxxxxx.com>
Date:   Mon Oct 25 16:30:06 2021 +0800

    init
    
# 举例:重用 init 的提交信息
$ git commit -C fcadef453058fb4b97b7c0cbc2994bed3a81302e
[master e82bdf2] init
 Date: Mon Oct 25 16:30:06 2021 +0800
 1 file changed, 1 insertion(+), 1 deletion(-)

结果如下:(作者,时间和信息都是一样的噢)
commitC

06 git commit -c

 # 方式 1
 git commit -c
 # 方式 2
 git commit --reedit-message=<commit>

描述 :与 -C 类似,但使用 -c 会调用编辑器,以便用户可以进一步编辑提交消息,即与 -C 相比多了一项修改编辑的步骤。

07 git commit -n

 # 方式 1
 git commit -n
 # 方式 2
 git commit --no-verify

描述 :这个选项可以绕过 pre-commitcommit-msg

08 git commit --amend

描述 :通过创建新提交来替换当前分支的提交信息。

使用示范 1 :修改上一次的提交信息。

# 查看最新的提交信息
$ git log   
commit 155f771f90997b88dd71d4952dee3cf15618af1b (HEAD -> master)
Author: xxxxxx<xxxxxx.com>
Date:   Mon Oct 25 17:15:08 2021 +0800

    edit test

commit 69322b677a3a6be363ba559610988607480677ce
Author: xxxxxx<xxxxxx.com>
Date:   Mon Oct 25 17:11:30 2021 +0800

    init

# 举例:将 edit test 提交信息修改为 modify test

执行命令 git commit --amend ,会出现下面的编辑界面,将红色框选区中修改为想要的信息:
在这里插入图片描述
结果预览:修改之后查看提交记录,发现提交信息已经按照预期进行了修改,同时需要注意 commitId 也发生了变化。
在这里插入图片描述

使用示范 2 :将最近的修改追加到上一次的提交上。

# 查看最新的提交信息
$ git log           
commit 6681933eee000dcb99acc18f6c0fb246c551a7ad (HEAD -> master)
Author: xxxxxx<xxxxxx.com>
Date:   Mon Oct 25 17:15:08 2021 +0800

    modify test

commit 69322b677a3a6be363ba559610988607480677ce
Author: xxxxxx<xxxxxx.com>
Date:   Mon Oct 25 17:11:30 2021 +0800

    init

# 查看当前文件状态
$ git status
On branch master
Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git restore <file>..." to discard changes in working directory)
        modified:   test.js

no changes added to commit (use "git add" and/or "git commit -a")

# 暂存文件
$ git add .

# 将修改追加到上一次提交
$ git commit --amend

# 如果需要修改提交信息,则可以在出现编辑界面时进行修改;
# 若想保持上次提交信息,则直接退出 :q 编辑界面;
# ------------- 下面是编辑器显示内容------------
modify test

# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
#
# Date:      Mon Oct 25 17:15:08 2021 +0800
#
# On branch master
# Changes to be committed:
#       modified:   test.js
#
~                                                                                                                                                                  
~                                                                                                                                                                  
~                                                                                                                                                                  
"~/Documents/code/test/.git/COMMIT_EDITMSG" 11L, 266B
# ------------- 上面是编辑器显示内容------------

结果预览:追加提交完成, commitId 也发生了变化。
在这里插入图片描述

  开发工具 最新文章
Postman接口测试之Mock快速入门
ASCII码空格替换查表_最全ASCII码对照表0-2
如何使用 ssh 建立 socks 代理
Typora配合PicGo阿里云图床配置
SoapUI、Jmeter、Postman三种接口测试工具的
github用相对路径显示图片_GitHub 中 readm
Windows编译g2o及其g2o viewer
解决jupyter notebook无法连接/ jupyter连接
Git恢复到之前版本
VScode常用快捷键
上一篇文章      下一篇文章      查看所有文章
加:2021-10-27 13:01:55  更:2021-10-27 13:04:16 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 21:08:38-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码