Browse Source

Merge branch 'jn/fix-abbrev' into maint

* jn/fix-abbrev:
  examples/commit: use --abbrev for commit summary
  checkout, commit: remove confusing assignments to rev.abbrev
  archive: abbreviate substituted commit ids again
maint
Junio C Hamano 15 years ago
parent
commit
316fa401e1
  1. 1
      archive.c
  2. 1
      builtin/checkout.c
  3. 1
      builtin/commit.c
  4. 2
      contrib/examples/git-commit.sh
  5. 2
      t/t5001-archive-attr.sh

1
archive.c

@ -33,6 +33,7 @@ static void format_subst(const struct commit *commit, @@ -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);

1
builtin/checkout.c

@ -279,7 +279,6 @@ static void show_local_changes(struct object *head) @@ -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");

1
builtin/commit.c

@ -1163,7 +1163,6 @@ static void print_summary(const char *prefix, const unsigned char *sha1) @@ -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;

2
contrib/examples/git-commit.sh

@ -631,7 +631,7 @@ then @@ -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

2
t/t5001-archive-attr.sh

@ -4,7 +4,7 @@ test_description='git archive attribute tests' @@ -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"

Loading…
Cancel
Save