diff options
author | Jeff King <peff@peff.net> | 2010-04-08 15:42:37 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-04-08 23:13:48 -0700 |
commit | b0e621adfd5a60b7cbe95e59f09c87f0870321cb (patch) | |
tree | c979738c37c8ac0b7f88d01a54e0615914f061ec /git-submodule.sh | |
parent | 635530a2fcd4bb3714452403f341f1317ae9c9f6 (diff) | |
download | git-b0e621adfd5a60b7cbe95e59f09c87f0870321cb.tar.gz |
script with rev-list instead of log
Because log.decorate now shows decorations for --pretty=oneline,
we must explicitly turn it off when scripting. Otherwise,
users with log.decorate set will get cruft like:
$ git stash
Saved working directory and index state WIP on master:
2c1f7f5 (HEAD, master) commit subject
Instead of adding --no-decorate to the log command line,
let's just use the rev-list plumbing interface instead,
which does the right thing.
git-submodule has a similar call. Since it just counts the
commit lines, nothing is broken, but let's switch it, too,
for the sake of consistency and cleanliness.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-submodule.sh')
-rwxr-xr-x | git-submodule.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-submodule.sh b/git-submodule.sh index 664f21721c..c8d80822c2 100755 --- a/git-submodule.sh +++ b/git-submodule.sh @@ -643,7 +643,7 @@ cmd_summary() { range=$sha1_dst fi GIT_DIR="$name/.git" \ - git log --pretty=oneline --first-parent $range | wc -l + git rev-list --first-parent $range -- | wc -l ) total_commits=" ($(($total_commits + 0)))" ;; |