From: Junio C Hamano <hidden> Date: 2016-06-15 22:42:03
When rewinding the head, stash away the value of the original
HEAD in ORIG_HEAD, just like git-resolve-script does.
Signed-off-by: Junio C Hamano <redacted>
---
Since rewinding the head is a dangerous operation, saving it
somewhere just in case would make life a bit safer. This also
lets you do:
$ git commit
... "oops, I forgot to include that fix."
$ git reset HEAD^1
... edit away and update-cache
$ git commit -m ORIG_HEAD
to reuse the old commit message.
git-reset-script | 8 +++++++-
1 files changed, 7 insertions(+), 1 deletions(-)
87aced8864d926cf870ddfb2ca7ac5784fccb911
From: Johannes Schindelin <hidden> Date: 2016-06-15 22:42:03
Hi,
On Sun, 7 Aug 2005, Junio C Hamano wrote:
$ git commit -m ORIG_HEAD
Since there are not many users of git-commit's *-m* flag right now: Is it
necessary to confuse CVS people, who expect to be able to write
git commit -m "I did this and that"
I do not want to be too intrusive, but I think up to now there is just the
mailbox tools which use this feature, and users of git-reset. Thoughts?
Ciao,
Dscho
From: Johannes Schindelin <hidden> Date: 2016-06-15 22:42:03
Hi,
On Mon, 8 Aug 2005, Johannes Schindelin wrote:
Hi,
On Sun, 7 Aug 2005, Junio C Hamano wrote:
quoted
$ git commit -m ORIG_HEAD
Since there are not many users of git-commit's *-m* flag right now: Is it
necessary to confuse CVS people, who expect to be able to write
git commit -m "I did this and that"
I do not want to be too intrusive, but I think up to now there is just the
mailbox tools which use this feature, and users of git-reset. Thoughts?
From: Junio C Hamano <hidden> Date: 2016-06-15 22:42:03
Johannes Schindelin [off-list ref] writes:
Since there are not many users of git-commit's *-m* flag right now: Is it
necessary to confuse CVS people, who expect to be able to write
git commit -m "I did this and that"
I do not want to be too intrusive, but I think up to now there is just the
mailbox tools which use this feature, and users of git-reset. Thoughts?
I could be talked into renaming the option to something else and
using -m in a way that is CVS compatible.
That flag originally came from JIT, which uses:
-M <commit> literally take the commit message, no editing necessary;
-m <commit> start with commit message in this one but have user edit;
-l <file> use the log message in this file;
-l - read the log message from stdin.