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
5deb5cbd
Commit
5deb5cbd
authored
15 years ago
by
Scott Chacon
Browse files
Options
Downloads
Patches
Plain Diff
respecting file modes on git import
parent
87d462a6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
TODO.txt
+0
-1
0 additions, 1 deletion
TODO.txt
dulwich/repo.py
+2
-1
2 additions, 1 deletion
dulwich/repo.py
git_handler.py
+11
-2
11 additions, 2 deletions
git_handler.py
with
13 additions
and
4 deletions
TODO.txt
+
0
−
1
View file @
5deb5cbd
GENERAL
==========
* respect file modes on conversions
* explicit file renames
* integrate as native protocol handler (hg push git://...)
* more tests
...
...
This diff is collapsed.
Click to expand it.
dulwich/repo.py
+
2
−
1
View file @
5deb5cbd
...
...
@@ -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
):
...
...
This diff is collapsed.
Click to expand it.
git_handler.py
+
11
−
2
View file @
5deb5cbd
...
...
@@ -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
...
...
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