[git] 如何合并若干个 commit?(上)

背景

当我们在一个特性分支进行开发时,有时候会需要需要合并若干个 commit \text{commit} commit 的场景(例如在提 Pull Request \text{Pull Request} Pull Request 前,可以将该特性分支的所有 commit \text{commit} commit 合并为一个 commit \text{commit} commit,以便将来查看这个 Pull Request \text{Pull Request} Pull Request 的变更)

要点

借助以下两个命令,可以将当前分支的最近 n \text{n} n 个 commit \text{commit} commit 合并成一个 commit \text{commit} commit

bash 复制代码
git reset --soft HEAD~n
git commit -m "Please write your commit message here"

请注意

  • 执行第一个命令时,需要将 n \text{n} n 替换为您需要的数字(例如 5 \text{5} 5)
  • 执行第二个命令时,请将 "Please write your commit message here" 替换为合适的内容

正文

为了便于讨论,我们来杜撰一个例子 ⬇️

示例

准备工作

请将以下代码保存为 main.sh (具体的名称并不重要)

bash 复制代码
mkdir temp
cd temp

git init
echo "nothing here" >> README.txt
git add README.txt
git commit -m "initial commit"

BOUND=5

for ((i=1; i<=BOUND; i++))
do
    FILE_NAME="file_$i.txt"
    touch "$FILE_NAME"

    echo "This is file number $i" > "$FILE_NAME"
    echo "Created file: $FILE_NAME"
    
    git add "$FILE_NAME"
    git commit -m "Created file: $FILE_NAME"
done

echo "All files created successfully!"

通过执行下方的命令就可以运行 main.sh ⬇️

bash 复制代码
bash main.sh

运行完 main.sh 之后,当前目录中会多出一个 temp 目录。在当前目录执行 tree temp 后,应该可以看到如下的内容

text 复制代码
temp
├── file_1.txt
├── file_2.txt
├── file_3.txt
├── file_4.txt
├── file_5.txt
└── README.txt

1 directory, 6 files

如果用 IntelliJ IDEA (Community Edition) 打开 temp 目录,应该可以看到类似这样的效果 ⬇️

从图中可以看到,我们一共创建了 6 \text{6} 6 个 commit \text{commit} commit。如果我们想把最近的 5 \text{5} 5 个 commit \text{commit} commit 合并在一起,那么至少有两种方案 ⬇️

方案一:基于 git reset \text{git reset} git reset 命令的解决方案

通过执行如下命令,可以切换到 temp 目录中 ⬇️

bash 复制代码
cd temp

执行如下命令,就可以将最近的 5 \text{5} 5 个 commit \text{commit} commit 合并为一个

bash 复制代码
git reset --soft HEAD~5
git commit -m "Please write your commit message here"

请注意

  • 在第一个命令中,数字 5 \text{5} 5 并没有特殊之处,您可以使用数字 n \text{n} n 以合并最近的 n \text{n} n 个 commit \text{commit} commit
  • git commit \text{git commit} git commit 命令的 - m \text{-{}m} -m 选项之后,需要提供对应的 message \text{message} message

执行完上述两个命令后,借助 IntelliJ IDEA (Community Edition) 再次观察,结果符合预期 ⬇️

参考资料

关于 git reset \text{git reset} git reset 命令的详细介绍,可以参考以下两个链接(两个链接来自同一个网站,第一个链接的内容是简体中文,第二个链接的内容是英文)

相关推荐
咋吃都不胖lyh11 小时前
提交(Commit)到本地的 Git 仓库,然后才能推送(Push)到远程的 Git 仓库
git
__zRainy__13 小时前
VS Code 自动同步如何重写 Git 历史:一次重复合并冲突的排查与恢复
git
IT码农-爱吃辣条14 小时前
AI Codeview 安装与使用教程
git·ai
司南-704914 小时前
怎么使用git打包tag,并推送到远程仓库
git
考虑考虑15 小时前
git中的tag
git·gitlab·github
REDcker16 小时前
Git浅克隆详解与实践
大数据·git
养肥胖虎1 天前
Git提交规范笔记:feat和fix到底该怎么写
git·conventionalcommits
手握风云-1 天前
深入 Git:它是如何记录世界的(二)
git
weixin_433417672 天前
TortoiseGit推送到远端,如何配置
windows·git
Hey_Coder2 天前
【Git 常用命令速查表(按功能分类)】
git·git基础命令·git命令速查表·git 常用命令