gpt4 book ai didi

Git:在 rebase 期间防止提交

转载 作者:太空狗 更新时间:2023-10-29 14:11:22 24 4
gpt4 key购买 nike

当我在交互式 rebase 期间不小心执行了 git commit --amend 时,我知道如何轻松“修复”此状态。但我想知道是否有人有任何复杂程度的解决方案,可以让我配置 git/terminal/bash 来阻止我执行此操作。

我只是在使用 Mac OSX 终端。如果解决方案需要它们,我愿意接受其他终端程序。

1 @: master$ git pull
2 @: master$ git checkout my/feature/branch
3 @: my/feature/branch$ git rebase -i master
// There are merge conflicts
// I fix them, then
4 @: my/feature/branch$ git add .
// Then what I should do is:
5correct @: my/feature/branch$ git rebase --continue
// But instead, just due to dumb muscle memory, I do:
5incorrect @: my/feature/branch$ git commit --amend

我可以轻松修复损坏的结果状态。我只是想弄清楚是否有一种方法可以配置一些东西来防止我在 rebase 过程中执行 5incorrect 命令。

最佳答案

您可以将以下本地预提交 Hook 添加为 .git/hooks/pre-commit:

#!/bin/bash
set -e
shopt -s extglob

if [[ -d `git rev-parse --git-path rebase-merge` \
|| -d `git rev-parse --git-path rebase-apply` ]]; then
read -p 'Rebase in progress, continue? '
[[ ${REPLY,,} == @(y|yes) ]]
fi

然后只需 chmod +x .git/hooks/pre-commit 就可以了。如果 rebase 正在进行中,那么系统会提示您继续或按 ctrl-c 或只是输入或对您来说更方便的内容,脚本/提交将停止。

关于Git:在 rebase 期间防止提交,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42492248/

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