Skip to content

Commit

Permalink
Merge branch 'ma/hg-to-git'
Browse files Browse the repository at this point in the history
* ma/hg-to-git:
  hg-to-git: --allow-empty-message in git commit
  • Loading branch information
Junio C Hamano committed Aug 1, 2013
2 parents c298086 + 1611eed commit 400bf4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/hg-to-git/hg-to-git.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def getgitenv(user, date):
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
Expand Down

0 comments on commit 400bf4c

Please sign in to comment.