From 1611eed6e5071acd24b97933ac0d845db87ec7df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maur=C3=ADcio=20C=20Antunes?= Date: Sat, 20 Jul 2013 13:33:20 -0300 Subject: hg-to-git: --allow-empty-message in git commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Do not fail to import mercurial commits with empty commit messages. Signed-off-by: MaurĂ­cio C Antunes Signed-off-by: Junio C Hamano diff --git a/contrib/hg-to-git/hg-to-git.py b/contrib/hg-to-git/hg-to-git.py index 232625a..60dec86 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 -- cgit v0.10.2-6-g49f6