diff options
author | Dmitry Ivankov <divanorama@gmail.com> | 2011-08-11 16:21:07 +0600 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-08-11 12:20:56 -0700 |
commit | 17fb00721b854b1c469e44ad709a9cad2128f11d (patch) | |
tree | 25ab30762332e2e47c3f90c76a68c962c38d5efe /t/t9300-fast-import.sh | |
parent | 4cedb78cb5eeb26d6dd47f866b51f061737616f2 (diff) | |
download | git-17fb00721b854b1c469e44ad709a9cad2128f11d.tar.gz |
fast-import: don't fail on omitted committer name
fast-import format declares 'committer_name SP' to be optional in
'committer_name SP LT email GT'. But for a (commit) object SP is
obligatory while zero length committer_name is ok. git-fsck checks
that SP is present, so fast-import must prepend it if the name SP
part is omitted. It doesn't do so and thus for "LT email GT" ident
it writes a bad object.
Name cannot contain LT or GT, ident always comes after SP in fast-import.
So if ident starts with LT reuse the SP as if a valid 'SP LT email GT'
ident was passed.
This fixes a ident parsing bug for a well-formed fast-import input.
Though the parsing is still loose and can accept a ill-formed input.
Signed-off-by: Dmitry Ivankov <divanorama@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t9300-fast-import.sh')
-rwxr-xr-x | t/t9300-fast-import.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t9300-fast-import.sh b/t/t9300-fast-import.sh index a659dd408f..09ef6ba1d9 100755 --- a/t/t9300-fast-import.sh +++ b/t/t9300-fast-import.sh @@ -352,7 +352,7 @@ data <<COMMIT empty commit COMMIT INPUT_END -test_expect_failure 'B: accept and fixup committer with no name' ' +test_expect_success 'B: accept and fixup committer with no name' ' git fast-import <input && out=$(git fsck) && echo "$out" && |