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

explicit renames converting both ways now

parent 5b91477f
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,7 @@
* push with branch names (w/ proper error messages)
* explain what branch mapping policy determined when updating refs
* convert tags to git (local and .hgtags entries)
* add a warning for a non-fast forward push
FETCH
===========
......@@ -22,5 +23,4 @@
MAPPING ISSUES
==============
Created in Hg:
* explicit file renames
* named branches
......@@ -26,4 +26,5 @@
* named branches
* merges (dont convert back properly for some reason)
Created in Git:
* octopus merge explode/implode
......
......@@ -469,6 +469,25 @@
return convert[mode]
return ''
def extract_hg_metadata(self, message):
split = message.split("\n\n--HG--\n", 1)
renames = {}
branches = []
if len(split) == 2:
message, meta = split
lines = meta.split("\n")
for line in lines:
if line == '':
continue
command, data = line.split(" : ", 1)
if command == 'rename':
before, after = data.split(" => ", 1)
renames[after] = before
if command == 'branch':
branches.append(data)
return (message, renames, branches)
def import_git_commit(self, commit):
self.ui.debug("importing: %s\n" % commit.id)
# TODO : look for HG metadata in the message and use it
......@@ -478,7 +497,7 @@
# TODO : Do something less coarse-grained than try/except on the
# get_file call for removed files
# *TODO : parse commit message to extract hg meta info
(strip_message, hg_renames, hg_branches) = self.extract_hg_metadata(commit.message)
def getfilectx(repo, memctx, f):
try:
......@@ -486,7 +505,10 @@
e = self.convert_git_int_mode(mode)
except TypeError:
raise IOError()
copied_path = None # *TODO : file rename
if f in hg_renames:
copied_path = hg_renames[f]
else:
copied_path = None
return context.memfilectx(f, data, 'l' in e, 'x' in e, copied_path)
p1 = "0" * 40
......@@ -506,7 +528,7 @@
# get a list of the changed, added, removed files
extra = {}
# *TODO : if committer is different than author, add it to extra
text = commit.message
text = strip_message
date = datetime.datetime.fromtimestamp(commit.author_time).strftime("%Y-%m-%d %H:%M:%S")
ctx = context.memctx(self.repo, (p1, p2), text, files, getfilectx,
commit.author, date, extra)
......
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