diff options
author | MaurĂcio C Antunes <mauricio.antunes@gmail.com> | 2013-07-20 13:33:20 -0300 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-07-23 12:17:23 -0700 |
commit | 1611eed6e5071acd24b97933ac0d845db87ec7df (patch) | |
tree | 02a338574b3af5482dd68c4a8a79d9d86f396810 /contrib | |
parent | 117eea7eaaeb5ecb77d9b7cebdb40b4e85f37374 (diff) | |
download | git-1611eed6e5071acd24b97933ac0d845db87ec7df.tar.gz |
hg-to-git: --allow-empty-message in git commitma/hg-to-git
Do not fail to import mercurial commits with empty commit messages.
Signed-off-by: MaurĂcio C Antunes <mauricio.antunes@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/hg-to-git/hg-to-git.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/hg-to-git/hg-to-git.py b/contrib/hg-to-git/hg-to-git.py index 232625a7b7..60dec86d37 100755 --- a/contrib/hg-to-git/hg-to-git.py +++ b/contrib/hg-to-git/hg-to-git.py @@ -225,7 +225,7 @@ for cset in range(int(tip) + 1): os.system('git ls-files -x .hg --deleted | git update-index --remove --stdin') # commit - os.system(getgitenv(user, date) + 'git commit --allow-empty -a -F %s' % filecomment) + os.system(getgitenv(user, date) + 'git commit --allow-empty --allow-empty-message -a -F %s' % filecomment) os.unlink(filecomment) # tag |