зеркало из https://github.com/microsoft/git.git
Stash away the original head in ORIG_HEAD when resetting.
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 <junkio@cox.net>
This commit is contained in:
Родитель
045f82cbee
Коммит
32173e6988
|
@ -2,6 +2,12 @@
|
|||
. git-sh-setup-script || die "Not a git archive"
|
||||
rev=$(git-rev-parse --revs-only --verify --default HEAD "$@") || exit
|
||||
rev=$(git-rev-parse --revs-only --verify $rev^0) || exit
|
||||
git-read-tree --reset "$rev" && echo "$rev" > "$GIT_DIR/HEAD"
|
||||
git-read-tree --reset "$rev" && {
|
||||
if orig=$(git-rev-parse --verify HEAD 2>/dev/null)
|
||||
then
|
||||
echo "$orig" >"$GIT_DIR/ORIG_HEAD"
|
||||
fi
|
||||
echo "$rev" > "$GIT_DIR/HEAD"
|
||||
}
|
||||
git-update-cache --refresh
|
||||
rm -f "$GIT_DIR/MERGE_HEAD"
|
||||
|
|
Загрузка…
Ссылка в новой задаче