"brian m. carlson" <sandals@xxxxxxxxxxxxxxxxxxxx> writes: >> When the user presses Ctrl-C, the correct action would be to cleanly return >> to the initial branch. > > I would disagree here. When the user has hit Ctrl-C, they want to > interrupt the operation. That's literally why a SIGINT (interrupt) > signal is sent. A checkout can take a long time, and the user will not > want Git to perform an operation which will take even longer than the > original one (because the original checkout was aborted). > > Even if we did that, the user could just hit Ctrl-C again and really > interrupt the process, and then they'd be stuck again. > > If you don't want to interrupt the operation, then don't hit Ctrl-C. I agree with all of the above, but stopping with "don't" is not very helpful---people do do things that they are told not to anyway, and it makes a whole lot of difference if they know how to recover from the fallout of their actions. It would help to teach "reset --hard" or something that lets the user to return to a known state. It may not necessarily be the state the user would want to go, but it is still better to be in a known stable state and be able to complain "I lost my stashed changes" or "I lost a few commits" than to be in a state where the user is totally lost and do not know what to do next. Of course, that kind of coaching is not something we should do in our error or advise messages, but in an early part of the tutorial or somewhere, perhaps? Thanks.