Re: [PATCH v3 1/2] am: handle stray $dotest directory
From: Junio C Hamano <hidden>
Date: 2016-06-15 22:57:46
Ramkumar Ramachandra [off-list ref] writes:
else + # Possible stray $dotest directory in the independent-run + # case; in the --rebasing case, it is upto the caller + # (git-rebase--am) to take care of stray directories. + if test -d "$dotest" && test -z "$rebasing"
The $rebasing variable is set only when the command line of "git am" has --rebasing, i.e. only when it is driven by "git rebase". So this will not affect what happens to "git am --abort" that is run by the end user. That sounds like a safe thing to do as far as "am" is concerned. Will replace what has been queued on 'pu'. Thanks.