1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-06-01 22:56:10 +02:00

hg-to-git: use git init instead of git init-db

Signed-off-by: Miklos Vajna <vmiklos@frugalware.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Miklos Vajna 2008-07-06 05:15:20 +02:00 committed by Junio C Hamano
parent 96f2395951
commit af9a01e1c2

View File

@ -152,7 +152,7 @@ def getgitenv(user, date):
if not hgvers.has_key("0"):
print 'creating repository'
os.system('git init-db')
os.system('git init')
# loop through every hg changeset
for cset in range(int(tip) + 1):