Skip to content

Commit

Permalink
Merge branch 'jn/fix-abbrev' into maint
Browse files Browse the repository at this point in the history
* jn/fix-abbrev:
  examples/commit: use --abbrev for commit summary
  checkout, commit: remove confusing assignments to rev.abbrev
  archive: abbreviate substituted commit ids again
  • Loading branch information
Junio C Hamano committed Aug 20, 2010
2 parents 7d61b31 + 7f1592d commit 316fa40
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 4 deletions.
1 change: 1 addition & 0 deletions archive.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ static void format_subst(const struct commit *commit,
struct strbuf fmt = STRBUF_INIT;
struct pretty_print_context ctx = {0};
ctx.date_mode = DATE_NORMAL;
ctx.abbrev = DEFAULT_ABBREV;

if (src == buf->buf)
to_free = strbuf_detach(buf, NULL);
Expand Down
1 change: 0 additions & 1 deletion builtin/checkout.c
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,6 @@ static void show_local_changes(struct object *head)
struct rev_info rev;
/* I think we want full paths, even if we're in a subdirectory. */
init_revisions(&rev, NULL);
rev.abbrev = 0;
rev.diffopt.output_format |= DIFF_FORMAT_NAME_STATUS;
if (diff_setup_done(&rev.diffopt) < 0)
die("diff_setup_done failed");
Expand Down
1 change: 0 additions & 1 deletion builtin/commit.c
Original file line number Diff line number Diff line change
Expand Up @@ -1163,7 +1163,6 @@ static void print_summary(const char *prefix, const unsigned char *sha1)
init_revisions(&rev, prefix);
setup_revisions(0, NULL, &rev, NULL);

rev.abbrev = 0;
rev.diff = 1;
rev.diffopt.output_format =
DIFF_FORMAT_SHORTSTAT | DIFF_FORMAT_SUMMARY;
Expand Down
2 changes: 1 addition & 1 deletion contrib/examples/git-commit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,7 @@ then
if test -z "$quiet"
then
commit=`git diff-tree --always --shortstat --pretty="format:%h: %s"\
--summary --root HEAD --`
--abbrev --summary --root HEAD --`
echo "Created${initial_commit:+ initial} commit $commit"
fi
fi
Expand Down
2 changes: 1 addition & 1 deletion t/t5001-archive-attr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ test_description='git archive attribute tests'

. ./test-lib.sh

SUBSTFORMAT=%H%n
SUBSTFORMAT='%H (%h)%n'

test_expect_exists() {
test_expect_success " $1 exists" "test -e $1"
Expand Down

0 comments on commit 316fa40

Please sign in to comment.