2007-06-30 07:37:09 +02:00
|
|
|
#!/bin/sh
|
|
|
|
# Copyright (c) 2007, Nanako Shiraishi
|
|
|
|
|
|
|
|
USAGE='[ | list | show | apply | clear]'
|
|
|
|
|
2007-07-06 21:57:47 +02:00
|
|
|
SUBDIRECTORY_OK=Yes
|
2007-06-30 07:37:09 +02:00
|
|
|
. git-sh-setup
|
|
|
|
require_work_tree
|
2007-07-26 00:32:22 +02:00
|
|
|
cd_to_toplevel
|
2007-06-30 07:37:09 +02:00
|
|
|
|
|
|
|
TMP="$GIT_DIR/.git-stash.$$"
|
|
|
|
trap 'rm -f "$TMP-*"' 0
|
|
|
|
|
|
|
|
ref_stash=refs/stash
|
|
|
|
|
|
|
|
no_changes () {
|
2007-07-03 07:52:14 +02:00
|
|
|
git diff-index --quiet --cached HEAD &&
|
|
|
|
git diff-files --quiet
|
2007-06-30 07:37:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
clear_stash () {
|
2007-07-27 08:24:28 +02:00
|
|
|
if current=$(git rev-parse --verify $ref_stash 2>/dev/null)
|
|
|
|
then
|
|
|
|
git update-ref -d refs/stash $current
|
|
|
|
fi
|
2007-06-30 07:37:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
save_stash () {
|
2007-07-05 07:46:09 +02:00
|
|
|
stash_msg="$1"
|
|
|
|
|
2007-06-30 07:37:09 +02:00
|
|
|
if no_changes
|
|
|
|
then
|
|
|
|
echo >&2 'No local changes to save'
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
test -f "$GIT_DIR/logs/$ref_stash" ||
|
|
|
|
clear_stash || die "Cannot initialize stash"
|
|
|
|
|
2007-07-28 03:44:48 +02:00
|
|
|
# Make sure the reflog for stash is kept.
|
|
|
|
: >>"$GIT_DIR/logs/$ref_stash"
|
|
|
|
|
2007-06-30 07:37:09 +02:00
|
|
|
# state of the base commit
|
2007-07-03 07:52:14 +02:00
|
|
|
if b_commit=$(git rev-parse --verify HEAD)
|
2007-06-30 07:37:09 +02:00
|
|
|
then
|
2007-07-03 07:52:14 +02:00
|
|
|
head=$(git log --abbrev-commit --pretty=oneline -n 1 HEAD)
|
2007-06-30 07:37:09 +02:00
|
|
|
else
|
|
|
|
die "You do not have the initial commit yet"
|
|
|
|
fi
|
|
|
|
|
2007-07-03 07:52:14 +02:00
|
|
|
if branch=$(git symbolic-ref -q HEAD)
|
2007-06-30 07:37:09 +02:00
|
|
|
then
|
|
|
|
branch=${branch#refs/heads/}
|
|
|
|
else
|
|
|
|
branch='(no branch)'
|
|
|
|
fi
|
|
|
|
msg=$(printf '%s: %s' "$branch" "$head")
|
|
|
|
|
|
|
|
# state of the index
|
2007-07-03 07:52:14 +02:00
|
|
|
i_tree=$(git write-tree) &&
|
2007-06-30 07:37:09 +02:00
|
|
|
i_commit=$(printf 'index on %s' "$msg" |
|
2007-07-03 07:52:14 +02:00
|
|
|
git commit-tree $i_tree -p $b_commit) ||
|
2007-06-30 07:37:09 +02:00
|
|
|
die "Cannot save the current index state"
|
|
|
|
|
|
|
|
# state of the working tree
|
|
|
|
w_tree=$( (
|
2007-07-08 10:28:18 +02:00
|
|
|
rm -f "$TMP-index" &&
|
|
|
|
cp -p ${GIT_INDEX_FILE-"$GIT_DIR/index"} "$TMP-index" &&
|
2007-06-30 07:37:09 +02:00
|
|
|
GIT_INDEX_FILE="$TMP-index" &&
|
|
|
|
export GIT_INDEX_FILE &&
|
2007-07-08 10:28:18 +02:00
|
|
|
git read-tree -m $i_tree &&
|
2007-07-03 07:52:14 +02:00
|
|
|
git add -u &&
|
|
|
|
git write-tree &&
|
2007-06-30 07:37:09 +02:00
|
|
|
rm -f "$TMP-index"
|
|
|
|
) ) ||
|
|
|
|
die "Cannot save the current worktree state"
|
|
|
|
|
|
|
|
# create the stash
|
2007-07-05 07:46:09 +02:00
|
|
|
if test -z "$stash_msg"
|
|
|
|
then
|
|
|
|
stash_msg=$(printf 'WIP on %s' "$msg")
|
|
|
|
else
|
|
|
|
stash_msg=$(printf 'On %s: %s' "$branch" "$stash_msg")
|
|
|
|
fi
|
|
|
|
w_commit=$(printf '%s\n' "$stash_msg" |
|
2007-07-03 07:52:14 +02:00
|
|
|
git commit-tree $w_tree -p $b_commit -p $i_commit) ||
|
2007-06-30 07:37:09 +02:00
|
|
|
die "Cannot record working tree state"
|
|
|
|
|
2007-07-05 07:46:09 +02:00
|
|
|
git update-ref -m "$stash_msg" $ref_stash $w_commit ||
|
2007-06-30 07:37:09 +02:00
|
|
|
die "Cannot save the current status"
|
2007-07-05 07:46:09 +02:00
|
|
|
printf >&2 'Saved "%s"\n' "$stash_msg"
|
2007-06-30 07:37:09 +02:00
|
|
|
}
|
|
|
|
|
2007-07-02 06:21:24 +02:00
|
|
|
have_stash () {
|
2007-07-03 07:52:14 +02:00
|
|
|
git rev-parse --verify $ref_stash >/dev/null 2>&1
|
2007-07-02 06:21:24 +02:00
|
|
|
}
|
|
|
|
|
2007-06-30 07:37:09 +02:00
|
|
|
list_stash () {
|
2007-07-02 06:21:24 +02:00
|
|
|
have_stash || return 0
|
2007-07-03 07:52:14 +02:00
|
|
|
git log --pretty=oneline -g "$@" $ref_stash |
|
2007-06-30 07:37:09 +02:00
|
|
|
sed -n -e 's/^[.0-9a-f]* refs\///p'
|
|
|
|
}
|
|
|
|
|
|
|
|
show_stash () {
|
2007-07-03 07:52:14 +02:00
|
|
|
flags=$(git rev-parse --no-revs --flags "$@")
|
2007-06-30 07:37:09 +02:00
|
|
|
if test -z "$flags"
|
|
|
|
then
|
|
|
|
flags=--stat
|
|
|
|
fi
|
2007-07-03 07:52:14 +02:00
|
|
|
s=$(git rev-parse --revs-only --no-flags --default $ref_stash "$@")
|
2007-06-30 07:37:09 +02:00
|
|
|
|
2007-07-03 07:52:14 +02:00
|
|
|
w_commit=$(git rev-parse --verify "$s") &&
|
|
|
|
b_commit=$(git rev-parse --verify "$s^") &&
|
|
|
|
git diff $flags $b_commit $w_commit
|
2007-06-30 07:37:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
apply_stash () {
|
2007-07-03 07:52:14 +02:00
|
|
|
git diff-files --quiet ||
|
2007-06-30 07:37:09 +02:00
|
|
|
die 'Cannot restore on top of a dirty state'
|
|
|
|
|
2007-07-02 13:14:49 +02:00
|
|
|
unstash_index=
|
|
|
|
case "$1" in
|
|
|
|
--index)
|
|
|
|
unstash_index=t
|
|
|
|
shift
|
|
|
|
esac
|
|
|
|
|
2007-06-30 07:37:09 +02:00
|
|
|
# current index state
|
2007-07-03 07:52:14 +02:00
|
|
|
c_tree=$(git write-tree) ||
|
2007-06-30 07:37:09 +02:00
|
|
|
die 'Cannot apply a stash in the middle of a merge'
|
|
|
|
|
2007-07-28 08:41:31 +02:00
|
|
|
# stash records the work tree, and is a merge between the
|
|
|
|
# base commit (first parent) and the index tree (second parent).
|
2007-07-03 07:52:14 +02:00
|
|
|
s=$(git rev-parse --revs-only --no-flags --default $ref_stash "$@") &&
|
|
|
|
w_tree=$(git rev-parse --verify "$s:") &&
|
2007-07-28 08:41:31 +02:00
|
|
|
b_tree=$(git rev-parse --verify "$s^1:") &&
|
|
|
|
i_tree=$(git rev-parse --verify "$s^2:") ||
|
2007-06-30 07:37:09 +02:00
|
|
|
die "$*: no valid stashed state found"
|
|
|
|
|
2007-07-28 08:41:31 +02:00
|
|
|
unstashed_index_tree=
|
|
|
|
if test -n "$unstash_index" && test "$b_tree" != "$i_tree"
|
|
|
|
then
|
2007-07-02 13:14:49 +02:00
|
|
|
git diff --binary $s^2^..$s^2 | git apply --cached
|
|
|
|
test $? -ne 0 &&
|
|
|
|
die 'Conflicts in index. Try without --index.'
|
|
|
|
unstashed_index_tree=$(git-write-tree) ||
|
|
|
|
die 'Could not save index tree'
|
|
|
|
git reset
|
2007-07-28 08:41:31 +02:00
|
|
|
fi
|
2007-07-02 13:14:49 +02:00
|
|
|
|
2007-06-30 07:37:09 +02:00
|
|
|
eval "
|
|
|
|
GITHEAD_$w_tree='Stashed changes' &&
|
|
|
|
GITHEAD_$c_tree='Updated upstream' &&
|
|
|
|
GITHEAD_$b_tree='Version stash was based on' &&
|
|
|
|
export GITHEAD_$w_tree GITHEAD_$c_tree GITHEAD_$b_tree
|
|
|
|
"
|
|
|
|
|
|
|
|
if git-merge-recursive $b_tree -- $c_tree $w_tree
|
|
|
|
then
|
|
|
|
# No conflict
|
2007-07-28 08:41:31 +02:00
|
|
|
if test -n "$unstashed_index_tree"
|
|
|
|
then
|
|
|
|
git read-tree "$unstashed_index_tree"
|
2007-07-28 08:51:45 +02:00
|
|
|
else
|
|
|
|
a="$TMP-added" &&
|
|
|
|
git diff --cached --name-only --diff-filter=A $c_tree >"$a" &&
|
|
|
|
git read-tree --reset $c_tree &&
|
|
|
|
git update-index --add --stdin <"$a" ||
|
|
|
|
die "Cannot unstage modified files"
|
|
|
|
rm -f "$a"
|
2007-07-28 08:41:31 +02:00
|
|
|
fi
|
|
|
|
git status || :
|
2007-06-30 07:37:09 +02:00
|
|
|
else
|
|
|
|
# Merge conflict; keep the exit status from merge-recursive
|
2007-07-02 13:14:49 +02:00
|
|
|
status=$?
|
2007-07-28 08:41:31 +02:00
|
|
|
if test -n "$unstash_index"
|
|
|
|
then
|
|
|
|
echo >&2 'Index was not unstashed.'
|
|
|
|
fi
|
2007-07-02 13:14:49 +02:00
|
|
|
exit $status
|
2007-06-30 07:37:09 +02:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Main command set
|
|
|
|
case "$1" in
|
2007-07-03 08:15:45 +02:00
|
|
|
list)
|
|
|
|
shift
|
2007-06-30 07:37:09 +02:00
|
|
|
if test $# = 0
|
|
|
|
then
|
|
|
|
set x -n 10
|
|
|
|
shift
|
|
|
|
fi
|
|
|
|
list_stash "$@"
|
|
|
|
;;
|
|
|
|
show)
|
|
|
|
shift
|
|
|
|
show_stash "$@"
|
|
|
|
;;
|
|
|
|
apply)
|
|
|
|
shift
|
|
|
|
apply_stash "$@"
|
|
|
|
;;
|
|
|
|
clear)
|
|
|
|
clear_stash
|
|
|
|
;;
|
2007-07-05 07:46:09 +02:00
|
|
|
help | usage)
|
|
|
|
usage
|
2007-06-30 07:37:09 +02:00
|
|
|
;;
|
|
|
|
*)
|
2007-07-05 07:46:09 +02:00
|
|
|
if test $# -gt 0 && test "$1" = save
|
|
|
|
then
|
|
|
|
shift
|
|
|
|
fi
|
|
|
|
save_stash "$*" && git-reset --hard
|
|
|
|
;;
|
2007-06-30 07:37:09 +02:00
|
|
|
esac
|