Git rebase合并多个提交


本文介绍了通过 Git 命令操作,文末有 Goland IDEA 的简便操作。

查看日志,找到需要合并的多个分支的上一个起点,比如 18a14636

$git log --oneline

d1503601 feat(link_video):埋点统计
ad94a443 feat(bottom_ecmp_policy):策略名称唯一验证修复
043fa7de feat(bottom_ecmp_policy):策略名称唯一验证修复
32fae648 feat(bottom_ecmp_policy):策略名称唯一验证
80cee6b4 feat(bottom_ecmp_policy):按ecpm正序排序
f955a20e feat(bottom_ecmp_policy):新增策略类型'动态adload-底部cpm'
18a14636 (tag: v7.3.9.3) Merge branch 'release/v7.3.9.3'

使用 rebase 进行合并

进入编辑器后,把除了第一行的 pick 全部改成 squash:wq 保存。重新编辑一下提交日志,再次 :wq 即可。

$git rebase -i 18a14636

pick feat(link_video):埋点统计
pick feat(bottom_ecmp_policy):策略名称唯一验证修复
pick feat(bottom_ecmp_policy):策略名称唯一验证修复
pick feat(bottom_ecmp_policy):策略名称唯一验证
pick feat(bottom_ecmp_policy):按ecpm正序排序
pick feat(bottom_ecmp_policy):新增策略类型'动态adload-底部cpm'
#
# Commands:
# p, pick <commit> = use commit
# r, reword <commit> = use commit, but edit the commit message
# e, edit <commit> = use commit, but stop for amending
# s, squash <commit> = use commit, but meld into previous commit
# f, fixup [-C | -c] <commit> = like "squash" but keep only the previous
#                    commit's log message, unless -C is used, in which case
#                    keep only this commit's message; -c is same as -C but
#                    opens the editor
# x, exec <command> = run command (the rest of the line) using shell
# b, break = stop here (continue rebase later with 'git rebase --continue')
# d, drop <commit> = remove commit
# l, label <label> = label current HEAD with a name
# t, reset <label> = reset HEAD to a label
# m, merge [-C <commit> | -c <commit>] <label> [# <oneline>]
# .       create a merge commit using the original merge commit's
# .       message (or the oneline, if no original merge commit was
# .       specified); use -c <commit> to reword the commit message
#
# These lines can be re-ordered; they are executed from top to bottom.
#
# If you remove a line here THAT COMMIT WILL BE LOST.
#
# However, if you remove everything, the rebase will be aborted.

Goland Git

选择历史,选择多个提交,右键,squash commits

Read more

CLI 工具多版本管理器 - asdf

CLI 工具多版本管理器 - asdf

asdf 是一个 CLI 工具,可以根据每个项目管理多个工具或语言运行时版本。它就像 gvm、nvm、rbenv 和 pyenv(以及更多)的合一工具!只需安装您语言的插件即可! 这个随手起的名字,可能是目前地表最强版本管理器。 https://github.com/asdf-vm/asdf 一、安装 asdf 以 macbook 为示例 brew install asdf asdf -v asdf version 0.16.2 0.16.0 以上命令有较大变更,详见:https://asdf-vm.com/guide/upgrading-to-v0-16.html#breaking-changes 本文使用

By brian
golang proto api 校验国际化 protovalidate

golang proto api 校验国际化 protovalidate

众所周知,protobuf 原型文件扩展很多功能,比如生成 http 接口层代码,顺势就有了生成接口参数校验代码的需求。 早期可以使用https://github.com/bufbuild/protoc-gen-validate 来实现,通过生成特定的 go 代码的方式来实现校验。 github 中也提到目前趋于稳定,不会有更多新特性的支持,推荐大家使用新的版本 protovalidate,https://github.com/bufbuild/protovalidate 。该版本是protoc-gen-validate 的“精神继承者”。它不需要任何代码生成并支持自定义约束。 现在我们尝试新版本,并且增加国际化支持。 go get github.com/bufbuild/protovalidate-go import "github.com/bufbuild/protovalidate-go" syntax = "proto3"; package

By brian
沪ICP备2022013452号-1