对 squash 提交的交互式 rebase 挂起

Interactive rebase to squash commits is hanging

git rebase -i $(HASH) 挂起..永远不会完成。

这是命令

git rebase -i d8c0f59d5d627efb65b47264d5169e3626195839

这样做是为了压缩一些提交。由于它是交互式的 - 它要求按预期打开编辑器两次。

然后打印类似

的内容
 [detached HEAD fc62e0b3] AIRFLOW-1012 -
 add run_as_script parameter  
 Author: Tagar  
 Date: Sun Mar 19 12:50:50 2017 -0600
 2 files changed, 14 insertions(+), 3 deletions(-)

然后..什么也没有发生 - git rebase waits/hangs 无限期地。

我在 Windows 上使用来自 GitHub 的 git-shell,最新版本。

尝试追踪 git rebase 如下:

set -x; GIT_TRACE=2 GIT_CURL_VERBOSE=2 GIT_TRACE_PERFORMANCE=2 \
GIT_TRACE_PACK_ACCESS=2 GIT_TRACE_PACKET=2 GIT_TRACE_PACKFILE=2 \
GIT_TRACE_SETUP=2 GIT_TRACE_SHALLOW=2 \
git rebase -i d8c0f59d5d627efb65b47264d5169e3626195839

它在开始挂起之前显示最新的输出:

 20:03:58.266245 trace.c:435             performance: 13.236119523 s:
 git command:
 'C:\Users\myuser1\AppData\Local\GitHubPortableGit_f02737a78695063deace08e96d5042710d3e32db\mingw32\libexec\git-core\git.exe'
 'commit' '-n' '--amend' '-F' '.git/SQUASH_MSG' '-e' 20:03:58.293248
 run-command.c:350       trace: run_command: 'notes' 'copy'
 '--for-rewrite=rebase' 
 20:03:58.371255 trace.c:333             setup:
 git_dir: .git 
 20:03:58.372255 trace.c:334             setup:
 git_common_dir: .git 
 20:03:58.372255 trace.c:335             setup:
 worktree: C:/Users/myuser1/Documents/GitHub/incubator-airflow
 20:03:58.372255 trace.c:336             setup: cwd:
 C:/Users/myuser1/Documents/GitHub/incubator-airflow
 20:03:58.372255 trace.c:337             setup: prefix: (null)
 20:03:58.372255 git.c:371               trace: built-in: git 'notes'
 'copy' '--for-rewrite=rebase' 
 20:03:58.372255 trace.c:435            
 performance: 0.006984451 s: git command:
 'C:\Users\myuser1\AppData\Local\GitHub\PortableGit_f02737a78695063deace08e96d5042710d3e32db\mingw32\libexec\git-core\git.exe'
 'notes' 'copy' '--for-rewrite=rebase'

所以 git rebase 执行的最新命令是 git notes copy --for-rewrite=rebase 并且成功了,根据跟踪(运行 时间 0.0069s)。
之后什么也没有发生。

我是一个老派的 SVN,正在学习 git,但在我看来,这似乎是 GitHub 便携版 git 的一个错误?

PS: 本来想做strace的,但是Windows下mingw的strace看起来不是很有用。

不要使用 GitHub Desktop 中嵌入的便携式 Git,请使用以下方法重试:

  • latest Git for Windows you can find, like PortableGit-2.12.1-64-bit.7z.exe(解压到任何你想要的地方,无需设置)
  • 然后在 CMD 会话中,将您的 PATH 设置为:

    set G=c:\path\to\latest\git
    set PATH=%G%\bin;%G%\usr\bin;%G%\mingw64\bin
    set PATH=%PATH%;C:\windows\system32;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0\
    
  • 在同一 CMD 会话中设置您的 HOME

    set HOME=%USERPROFILE%
    
  • 最后,还是从同一个 CMD(带有简化的 PATH),cd 到你的 Git 本地仓库,然后再次尝试你的 rebase。
    在重新尝试变基之前执行 git rebase --quit first