gpt4 book ai didi

git rebase -i shortcut -- 找到最好的 rebase 提交

转载 作者:太空狗 更新时间:2023-10-29 14:46:54 28 4
gpt4 key购买 nike

总结

在当前分支中找到还包含在任何其他分支中的最新提交的最快方法是什么?

奖励:该技术能否允许上述问题中的“任何其他分支”成为“任何其他远程分支”或“任何其他本地分支”?


背景

我喜欢使用 git rebase -i。我的主要用例是在推送到远程之前重新组织提交。因此,我经常执行 git rebase -i origin/master。因此,我为该操作设置了一个名为 git rewrite 的别名。

问题是我并不总是想根据 origin/master rebase 。例如,我可能正在一个分支上工作,而不是希望 git rewrite 执行 git rebase -i origin/branch。或者我可能正在本地分支机构工作并希望 git rewrite 执行 git rebase -i localbranch

所以实际上,我试图让我的 git rewrite 脚本做一些类似的事情:“从任何其他分支中包含的最后一次提交做一个交互式 rebase”。我想出的是:(仅适用于查找远程分支)

#!/bin/bash

# Do a git rebase -i from the most recent common point between the
# current branch and any other remote branch.

# We go backwards in the branch's history and for each commit check if
# that commit is present in one of the remote branches. As soon as we
# find one that is, we stop and rebase on that.

commit=$(git rev-parse HEAD)
while [ true ]; do
branch=$(git branch -r --contains $commit)
if [ -n "$branch" ]; then
# This commit exists in another remote branch!
break
fi
# OK, let's try the previous commit
commit=$(git log --pretty=%P -n 1 $commit)
# Stupid heuristic, take only first commit if multiple parents
commit=${commit%% *}
done

git rebase -i $commit

此方法的问题是它。它也有点不准确,因为当一个提交有多个父项时它只跟随其中一个父项。

有谁知道更好/更快/更清洁的方法吗?

最佳答案

重写脚本可能如下所示 (bash):

#!/bin/bash
count=0
for rev in $(git rev-list HEAD); do
num=$(git branch --all --contains ${rev} | wc | awk '{print $1}')
[ ${num} -eq 1 ] || break
count=$(( count + 1 ))
done
if [ ${count} -gt 0 ]; then
git rebase -i HEAD~${count}
fi

我经常做的是(从上游点 rebase ):

git rebase -i @{u}

不过,@{u} 技术不会捕获其他分支。

关于git rebase -i shortcut -- 找到最好的 rebase 提交,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21815197/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com