diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-05-08 22:36:14 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-05-08 22:36:14 -0700 |
commit | 72d9b222a940c93a8d915c26a4d5d077e23be871 (patch) | |
tree | b1bfaf4991ee3edf1410ef4e5dff3a5475746795 /git-stash.sh | |
parent | e251a7b34a85b0ac8a63a31e899e070ea2a330c7 (diff) | |
parent | 4f62c2bc577bbb85b65f3261c7fab7ef74def4cd (diff) | |
download | git-72d9b222a940c93a8d915c26a4d5d077e23be871.tar.gz |
Merge branch 'sd/log-decorate'
* sd/log-decorate:
log.decorate: only ignore it under "log --pretty=raw"
script with rev-list instead of log
log --pretty/--oneline: ignore log.decorate
log.decorate: usability fixes
Add `log.decorate' configuration variable.
git_config_maybe_bool()
Conflicts:
builtin/log.c
Diffstat (limited to 'git-stash.sh')
-rwxr-xr-x | git-stash.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-stash.sh b/git-stash.sh index 59db3dc38e..908aab2659 100755 --- a/git-stash.sh +++ b/git-stash.sh @@ -57,7 +57,7 @@ create_stash () { # state of the base commit if b_commit=$(git rev-parse --verify HEAD) then - head=$(git log --no-color --abbrev-commit --pretty=oneline -n 1 HEAD --) + head=$(git rev-list --oneline -n 1 HEAD --) else die "You do not have the initial commit yet" fi |