Hello,
when hitting a conflict cherry-pick suggests using
git commit -c $sha1
but the resulting (suggested) commit log doesn't have the extra
reference requested by -x.
Best regards
Uwe
--
Pengutronix e.K. | Uwe Kleine-König |
Industrial Linux Solutions | http://www.pengutronix.de/ |
From: Robin Rosenberg <hidden> Date: 2016-06-15 22:50:20
29 dec 2010 kl. 15:16 skrev Uwe Kleine-König:
Hello,
when hitting a conflict cherry-pick suggests using
git commit -c $sha1
but the resulting (suggested) commit log doesn't have the extra
reference requested by -x.
The man page says -x only takes effect when you do not have a conflict, so there
is no bug.
-- robin
On Wed, Jan 05, 2011 at 07:31:05AM +0100, Robin Rosenberg wrote:
29 dec 2010 kl. 15:16 skrev Uwe Kleine-König:
quoted
Hello,
when hitting a conflict cherry-pick suggests using
git commit -c $sha1
but the resulting (suggested) commit log doesn't have the extra
reference requested by -x.
The man page says -x only takes effect when you do not have a conflict, so there
is no bug.
ah, I wonder if this is intended or just documenting a short-coming :-)
Uwe
--
Pengutronix e.K. | Uwe Kleine-König |
Industrial Linux Solutions | http://www.pengutronix.de/ |
From: Jay Soffian <hidden> Date: 2016-06-15 22:50:20
2011/1/5 Uwe Kleine-König [off-list ref]:
quoted
The man page says -x only takes effect when you do not have a conflict, so there
is no bug.
ah, I wonder if this is intended or just documenting a short-coming :-)
I think it's intended as it's no longer the original commit, but
personally I think it should be configurable (I'd like -x to be
configurable as well). For now, I use the following "recommit" script
after a cherry-pick conflict.
#!/bin/sh
# Used after a cherry-pick conflicts to commit with the original
# authorship (commit -c) but keep the newly generated commit message
#
self=$(cd "$(dirname "$0")" && pwd -P)/$(basename "$0")
. "$(git --exec-path)/git-sh-setup"
require_work_tree
cd_to_toplevel
test -f .git/MERGE_MSG || die "No .git/MERGE_MSG"
if test "$GIT_EDITOR" = "$self"
then
cat .git/MERGE_MSG > .GIT/COMMIT_EDITMSG
exit 0
fi
if sha1=$(sed -ne \
's/^(cherry picked from commit \([a-f0-9]\{40\}\))$/\1/p' .git/MERGE_MSG)
then
export GIT_EDITOR="$self"
git commit -c $sha1
fi
j.