Jacob Keller <jacob.keller@xxxxxxxxx> writes: > I've been experiencing a very annoying bug when performing interactive > rebases. The rebase process will stall after I close the editor, and I > have to kill the process and then restart the rebase using "git rebase > --continue" > > I am not sure how to debug this further. Suggestions are welcome. First, I'd try "pstree" ("pstree -p" to get pid) to see if your editor is really dead. Then, "strace -p" on the git process, to see if it's doing some system calls while hanged, or if it's hanged on a particular syscall. Hopefully, this will yield some "open" calls and tell you which files Git is currently working with. -- Matthieu Moy http://www-verimag.imag.fr/~moy/ -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html