Git第六阶段:Rebase -> 合并多个commit为一个,使提交更为简洁。

2024-01-21 18:08

本文主要是介绍Git第六阶段:Rebase -> 合并多个commit为一个,使提交更为简洁。,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1.如下所示,自上次push以后,我在本地有三次零散的commit,但是还没有push,因为不想提交到server上显得太过凌乱,所以要合并以下再push,这就要用到’git rebase’:
peng@host:~/gitTest$ git log
commit a92aea92169587086679cd13af4cf2dc335ceca5 (HEAD -> master)
Author: songpeng22 <songpeng24@msn.com>
Date:   Wed Jul 22 21:43:34 2020 +08003st commit
commit 0c971470adcbc429c7b2709af18318f2d523439a
Author: songpeng22 <songpeng24@msn.com>
Date:   Wed Jul 22 21:43:13 2020 +08002st commit
commit 3db8de23e1253c48caadf9fb0393659dadf0fdf9
Author: songpeng22 <songpeng24@msn.com>
Date:   Wed Jul 22 21:42:51 2020 +08001st commit
commit 5bb1c9bdcc49ba3238584a6bb45e95aab70a8132 (origin/master, origin/HEAD)
Author: songpeng22 <songpeng24@msn.com>
Date:   Wed Jul 22 20:40:00 2020 +0800cmake:hello world
commit a4c972b003daa3e1e854ce3c762237262edb3131
Author: songpeng22 <31085468+songpeng22@users.noreply.github.com>
Date:   Wed Jul 22 19:41:08 2020 +0800Initial commit
2.git rebase的使用:

合并最近三次到提交:

git rebase -i HEAD~3

于是出现了(这里是自动用vim打开):

  1 pick 3db8de2 1st commit2 pick 0c97147 2st commit3 pick a92aea9 3st commit4 5 # Rebase 5bb1c9b..a92aea9 onto 5bb1c9b (3 commands)6 #7 # Commands:8 # p, pick <commit> = use commit9 # r, reword <commit> = use commit, but edit the commit message10 # e, edit <commit> = use commit, but stop for amending11 # s, squash <commit> = use commit, but meld into previous commit12 # f, fixup <commit> = like "squash", but discard this commit's log message13 # x, exec <command> = run command (the rest of the line) using shell14 # b, break = stop here (continue rebase later with 'git rebase --continue')15 # d, drop <commit> = remove commit16 # l, label <label> = label current HEAD with a name17 # t, reset <label> = reset HEAD to a label18 # m, merge [-C <commit> | -c <commit>] <label> [# <oneline>]19 # .       create a  merge commit using the original merge commit's20 # .       message (or the oneline, if no original merge commit was21 # .       specified). Use -c <commit> to reword the commit message.22 #23 # These lines can be re-ordered; they are executed from top to bottom.24 #25 # If you remove a line here THAT COMMIT WILL BE LOST.26 #27 # However, if you remove everything, the rebase will be aborted.28 #29 # Note that empty commits are commented out
3. 合并方式

我们想把三次commit 合并成一个,这就要用到上面文本里到一些操作命令。这里选squash( use commit , but meld into previous commit) ,将后面的塞入之前的commit
将上面前三行的内容修改为

  1 p 3db8de2 1st commit2 s 0c97147 2st commit3 s a92aea9 3st commit
略...................................
4.修改commit日志

上面修改后,输入wq保存后,跳出修改日志的内容:

  1 # This is a combination of 3 commits.2 # This is the 1st commit message:4 1st commit6 # This is the commit message #2:8 2st commit10 # This is the commit message #3:12 3st commit14 # Please enter the commit message for your changes. Lines starting15 # with '#' will be ignored, and an empty message aborts the commit.16 #17 # Date:      Wed Jul 22 21:42:51 2020 +080018 #19 # interactive rebase in progress; onto 5bb1c9b20 # Last commands done (3 commands done):21 #    squash 0c97147 2st commit22 #    squash a92aea9 3st commit23 # No commands remaining.24 # You are currently rebasing branch 'master' on '5bb1c9b'.26 # Changes to be committed:27 #   modified:   README.md28 #

我将之修改为

  1 # This is a combination of 3 commits.2 combined log:3 1st commit4 2st commit5 3st commit7 # Please enter the commit message for your changes. Lines starting8 # with '#' will be ignored, and an empty message aborts the commit.9 #10 # Date:      Wed Jul 22 21:42:51 2020 +080011 #12 # interactive rebase in progress; onto 5bb1c9b13 # Last commands done (3 commands done):14 #    squash 0c97147 2st commit15 #    squash a92aea9 3st commit16 # No commands remaining.17 # You are currently rebasing branch 'master' on '5bb1c9b'.18 #19 # Changes to be committed:20 #   modified:   README.md
5.结果

输入git log,可以看到日志合并结果如下:

peng@host:~/gitTest$ git log
commit ee32c58cc8975b40cb7f86abe7c78206b2590256 (HEAD -> master)
Author: songpeng22 <songpeng24@msn.com>
Date:   Wed Jul 22 21:42:51 2020 +0800combined log:1st commit2st commit3st commit
commit 5bb1c9bdcc49ba3238584a6bb45e95aab70a8132 (origin/master, origin/HEAD)
Author: songpeng22 <songpeng24@msn.com>
Date:   Wed Jul 22 20:40:00 2020 +0800cmake:hello world
commit a4c972b003daa3e1e854ce3c762237262edb3131
Author: songpeng22 <31085468+songpeng22@users.noreply.github.com>
Date:   Wed Jul 22 19:41:08 2020 +0800Initial commit
6.push
sudo git push -f origin <branch>
6-1. rebase + force push 可能会导致的混乱

如果你的同事在你rebase之前,下载了你想要rebase的commit ,那么你的rebase + force push 可能会带来一些问题。
解决思路1:
可能需要 rebase 的 commit,先不要上传,rebase之后再统一上传。
解决思路2:
各人各用一个branch ,互相不干扰。你上传的时候只 force push 到你自己的branch 上面,如下:
sudo git push -f origin <branch>

6-2 错误做法 - 如果直接 git push ,会被reject , 有类似提示:
error: failed to push some refs to 'https://name@github.com/***/***.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Integrate the remote changes (e.g.
hint: 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.

原因是rebase之后,remote repository 的 commit 和 local repository的commit 就不一样了,让你merge。
比较奇怪的是 为什么说 current branch 是 behind remote repository。
我的理解,也许以服务器为起源/origin的话,只要服务器有你没有的commit , 你就算behind了。

参考文献:
彻底搞懂git:
http://jartto.wang/2018/12/11/git-rebase/
Git commits历史是如何做到如此清爽的:
https://www.zhihu.com/question/61283395
在这里插入图片描述

这篇关于Git第六阶段:Rebase -> 合并多个commit为一个,使提交更为简洁。的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/630397

相关文章

不删数据还能合并磁盘? 让电脑C盘D盘合并并保留数据的技巧

《不删数据还能合并磁盘?让电脑C盘D盘合并并保留数据的技巧》在Windows操作系统中,合并C盘和D盘是一个相对复杂的任务,尤其是当你不希望删除其中的数据时,幸运的是,有几种方法可以实现这一目标且在... 在电脑生产时,制造商常为C盘分配较小的磁盘空间,以确保软件在运行过程中不会出现磁盘空间不足的问题。但在

在C#中合并和解析相对路径方式

《在C#中合并和解析相对路径方式》Path类提供了几个用于操作文件路径的静态方法,其中包括Combine方法和GetFullPath方法,Combine方法将两个路径合并在一起,但不会解析包含相对元素... 目录C#合并和解析相对路径System.IO.Path类幸运的是总结C#合并和解析相对路径对于 C

轻松掌握python的dataclass让你的代码更简洁优雅

《轻松掌握python的dataclass让你的代码更简洁优雅》本文总结了几个我在使用Python的dataclass时常用的技巧,dataclass装饰器可以帮助我们简化数据类的定义过程,包括设置默... 目录1. 传统的类定义方式2. dataclass装饰器定义类2.1. 默认值2.2. 隐藏敏感信息

bat脚本启动git bash窗口,并执行命令方式

《bat脚本启动gitbash窗口,并执行命令方式》本文介绍了如何在Windows服务器上使用cmd启动jar包时出现乱码的问题,并提供了解决方法——使用GitBash窗口启动并设置编码,通过编写s... 目录一、简介二、使用说明2.1 start.BAT脚本2.2 参数说明2.3 效果总结一、简介某些情

作业提交过程之HDFSMapReduce

作业提交全过程详解 (1)作业提交 第1步:Client调用job.waitForCompletion方法,向整个集群提交MapReduce作业。 第2步:Client向RM申请一个作业id。 第3步:RM给Client返回该job资源的提交路径和作业id。 第4步:Client提交jar包、切片信息和配置文件到指定的资源提交路径。 第5步:Client提交完资源后,向RM申请运行MrAp

hdu2241(二分+合并数组)

题意:判断是否存在a+b+c = x,a,b,c分别属于集合A,B,C 如果用暴力会超时,所以这里用到了数组合并,将b,c数组合并成d,d数组存的是b,c数组元素的和,然后对d数组进行二分就可以了 代码如下(附注释): #include<iostream>#include<algorithm>#include<cstring>#include<stack>#include<que

day-51 合并零之间的节点

思路 直接遍历链表即可,遇到val=0跳过,val非零则加在一起,最后返回即可 解题过程 返回链表可以有头结点,方便插入,返回head.next Code /*** Definition for singly-linked list.* public class ListNode {* int val;* ListNode next;* ListNode() {}*

git使用的说明总结

Git使用说明 下载安装(下载地址) macOS: Git - Downloading macOS Windows: Git - Downloading Windows Linux/Unix: Git (git-scm.com) 创建新仓库 本地创建新仓库:创建新文件夹,进入文件夹目录,执行指令 git init ,用以创建新的git 克隆仓库 执行指令用以创建一个本地仓库的

HTML提交表单给python

python 代码 from flask import Flask, request, render_template, redirect, url_forapp = Flask(__name__)@app.route('/')def form():# 渲染表单页面return render_template('./index.html')@app.route('/submit_form',

【每日一题】LeetCode 2181.合并零之间的节点(链表、模拟)

【每日一题】LeetCode 2181.合并零之间的节点(链表、模拟) 题目描述 给定一个链表,链表中的每个节点代表一个整数。链表中的整数由 0 分隔开,表示不同的区间。链表的开始和结束节点的值都为 0。任务是将每两个相邻的 0 之间的所有节点合并成一个节点,新节点的值为原区间内所有节点值的和。合并后,需要移除所有的 0,并返回修改后的链表头节点。 思路分析 初始化:创建一个虚拟头节点