Browse Source

Merge branch 'maint'

* maint:
  for-each-ref: fix off by one read.
  git-branch: remove mention of non-existent '-b' option
  git-svn: prevent dcommitting if the index is dirty.
  Fix memory leak in traverse_commit_list
maint
Junio C Hamano 17 years ago
parent
commit
35865ca245
  1. 2
      Documentation/git-branch.txt
  2. 2
      builtin-for-each-ref.c
  3. 3
      git-svn.perl
  4. 7
      list-objects.c
  5. 6
      t/t9106-git-svn-dcommit-clobber-series.sh

2
Documentation/git-branch.txt

@ -105,7 +105,7 @@ OPTIONS @@ -105,7 +105,7 @@ OPTIONS
'--track' were given.

--no-track::
When -b is given and a branch is created off a remote branch,
When a branch is created off a remote branch,
set up configuration so that git-pull will not retrieve data
from the remote branch, ignoring the branch.autosetupmerge
configuration variable.

2
builtin-for-each-ref.c

@ -304,7 +304,7 @@ static const char *find_wholine(const char *who, int wholen, const char *buf, un @@ -304,7 +304,7 @@ static const char *find_wholine(const char *who, int wholen, const char *buf, un
if (!eol)
return "";
eol++;
if (eol[1] == '\n')
if (*eol == '\n')
return ""; /* end of header */
buf = eol;
}

3
git-svn.perl

@ -390,6 +390,9 @@ sub cmd_set_tree { @@ -390,6 +390,9 @@ sub cmd_set_tree {

sub cmd_dcommit {
my $head = shift;
git_cmd_try { command_oneline(qw/diff-index --quiet HEAD/) }
'Cannot dcommit with a dirty index. Commit your changes first'
. "or stash them with `git stash'.\n";
$head ||= 'HEAD';
my @refs;
my ($url, $rev, $uuid, $gs) = working_head_info($head, \@refs);

7
list-objects.c

@ -170,4 +170,11 @@ void traverse_commit_list(struct rev_info *revs, @@ -170,4 +170,11 @@ void traverse_commit_list(struct rev_info *revs,
}
for (i = 0; i < objects.nr; i++)
show_object(&objects.objects[i]);
free(objects.objects);
if (revs->pending.nr) {
free(revs->pending.objects);
revs->pending.nr = 0;
revs->pending.alloc = 0;
revs->pending.objects = NULL;
}
}

6
t/t9106-git-svn-dcommit-clobber-series.sh

@ -53,4 +53,10 @@ test_expect_success 'change file but in unrelated area' " @@ -53,4 +53,10 @@ test_expect_success 'change file but in unrelated area' "
test x\"\`sed -n -e 61p < file\`\" = x6611
"

test_expect_failure 'attempt to dcommit with a dirty index' '
echo foo >>file &&
git add file &&
git svn dcommit
'

test_done

Loading…
Cancel
Save