Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
hg-git
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
This instance will be upgraded to Heptapod 17.9.0 final on 2025-04-04 between 14:00 and 15:00 UTC+2
Show more breadcrumbs
mercurial
hg-git
Commits
19053d11
Commit
19053d11
authored
15 years ago
by
Scott Chacon
Browse files
Options
Downloads
Patches
Plain Diff
explicit renames converting both ways now
parent
5b91477f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
TODO.txt
+2
-1
2 additions, 1 deletion
TODO.txt
git_handler.py
+25
-3
25 additions, 3 deletions
git_handler.py
with
27 additions
and
4 deletions
TODO.txt
+
2
−
1
View file @
19053d11
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
git_handler.py
+
25
−
3
View file @
19053d11
...
...
@@ -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
_
meta
data
(
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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment