Skip to content
Snippets Groups Projects
Commit 5deb5cbd authored by Scott Chacon's avatar Scott Chacon
Browse files

respecting file modes on git import

parent 87d462a6
No related branches found
No related tags found
No related merge requests found
GENERAL
==========
* respect file modes on conversions
* explicit file renames
* integrate as native protocol handler (hg push git://...)
* more tests
......
......@@ -417,6 +417,7 @@
changes = list()
csha = None
ctree = None
cmode = None
if basetree:
for (bmode, bname, bsha) in basetree.entries():
if bmode == 57344: # TODO : properly handle submodules
......@@ -425,7 +426,7 @@
bobj = self.get_object(bsha)
if comptree:
(cmode, csha) = comptree.entry(bname)
if csha != bsha:
if not ((csha == bsha) and (cmode == bmode)):
if isinstance (bobj, Blob):
changes.append (prefix + bname)
elif isinstance(bobj, Tree):
......
......@@ -424,6 +424,15 @@
except AttributeError:
self.repo.ui.warn('creating bookmarks failed, do you have'
' bookmarks enabled?\n')
def convert_git_int_mode(self, mode):
convert = {
33188: '',
40960: 'l',
33261: 'e'}
if mode in convert:
return convert[mode]
return ''
def import_git_commit(self, commit):
print "importing: " + commit.id
......@@ -435,6 +444,7 @@
# get_file call for removed files
def getfilectx(repo, memctx, f):
try:
(e, sha, data) = self.git.get_file(commit, f)
(mode, sha, data) = self.git.get_file(commit, f)
e = self.convert_git_int_mode(mode)
except TypeError:
raise IOError()
......@@ -439,6 +449,5 @@
except TypeError:
raise IOError()
e = '' # TODO : make this a real mode
return context.memfilectx(f, data, 'l' in e, 'x' in e, None)
p1 = "0" * 40
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment