'git stash list' now always shows 'refs/stash@{...}' instead of 'stash@{...}', because that's what we specify for the ref. Since git checks .git/$ref, .git/refs/$ref and only then .git/refs/{branches,tags,remotes}, we can drop the prefix. This only affects people who have .git/stash, who were never able to refer to their stashes by stash@{...}. (Sadly, now they won't be able to use git-stash anymore at all.) Signed-off-by: Thomas Rast <trast@xxxxxxxxxxxxxxx> --- git-stash.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/git-stash.sh b/git-stash.sh index 08a7669..8bf464b 100755 --- a/git-stash.sh +++ b/git-stash.sh @@ -19,7 +19,7 @@ cd_to_toplevel TMP="$GIT_DIR/.git-stash.$$" trap 'rm -f "$TMP-*"' 0 -ref_stash=refs/stash +ref_stash=stash if git config --get-colorbool color.interactive; then help_color="$(git config --get-color color.interactive.help 'red bold')" -- 1.6.5.64.g01287 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html