summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 006a866)
raw | patch | inline | side by side (parent: 006a866)
author | Jeff King <peff@peff.net> | |
Mon, 2 Jul 2007 04:21:24 +0000 (00:21 -0400) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Mon, 2 Jul 2007 04:45:13 +0000 (21:45 -0700) |
Previously, the git-log invocation would complain if a repo
had not had any stashes created in it yet:
$ git-init
$ git-stash
fatal: ambiguous argument 'refs/stash': unknown revision or
path not in the working tree.
Use '--' to separate paths from revisions
Instead, we only call git-log if we actually have a
refs/stash. We could alternatively create the ref when any
stash command is called, but it's better for the 'list'
command to not require write access to the repo.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
had not had any stashes created in it yet:
$ git-init
$ git-stash
fatal: ambiguous argument 'refs/stash': unknown revision or
path not in the working tree.
Use '--' to separate paths from revisions
Instead, we only call git-log if we actually have a
refs/stash. We could alternatively create the ref when any
stash command is called, but it's better for the 'list'
command to not require write access to the repo.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-stash.sh | patch | blob | history |
diff --git a/git-stash.sh b/git-stash.sh
index 7644bd5a23d46bdcb5f8da00e2e21bce184a1669..18d3322ab5d57c8dc8e1333fc007861ef89e2d6d 100755 (executable)
--- a/git-stash.sh
+++ b/git-stash.sh
printf >&2 'Saved WIP on %s\n' "$msg"
}
+have_stash () {
+ git-rev-parse --verify $ref_stash >/dev/null 2>&1
+}
+
list_stash () {
+ have_stash || return 0
git-log --pretty=oneline -g "$@" $ref_stash |
sed -n -e 's/^[.0-9a-f]* refs\///p'
}