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
f0daee67
Commit
f0daee67
authored
15 years ago
by
Scott Chacon
Browse files
Options
Downloads
Patches
Plain Diff
successful push to an upstream git server - BOOYAH!
parent
7046d792
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
dulwich/client.py
+11
-5
11 additions, 5 deletions
dulwich/client.py
dulwich/protocol.py
+7
-0
7 additions, 0 deletions
dulwich/protocol.py
dulwich/repo.py
+0
-1
0 additions, 1 deletion
dulwich/repo.py
git_handler.py
+34
-5
34 additions, 5 deletions
git_handler.py
with
52 additions
and
11 deletions
dulwich/client.py
+
11
−
5
View file @
f0daee67
...
...
@@ -26,6 +26,7 @@
import
socket
import
subprocess
import
copy
import
tempfile
from
protocol
import
(
Protocol
,
...
...
@@ -112,7 +113,6 @@
:param generate_pack_contents: Function that can return the shas of the
objects to upload.
"""
print
'
SEND PACK
'
refs
,
server_capabilities
=
self
.
read_refs
()
changed_refs
=
get_changed_refs
(
refs
)
if
not
changed_refs
:
...
...
@@ -116,6 +116,6 @@
refs
,
server_capabilities
=
self
.
read_refs
()
changed_refs
=
get_changed_refs
(
refs
)
if
not
changed_refs
:
print
'
g
ot
here - nooo
'
print
'
n
ot
hing changed
'
self
.
proto
.
write_pkt_line
(
None
)
return
...
...
@@ -120,7 +120,5 @@
self
.
proto
.
write_pkt_line
(
None
)
return
print
'
got here - yay
'
print
changed_refs
self
.
proto
.
write_pkt_line
(
"
%s %s %s
\0
%s
"
%
(
changed_refs
[
0
][
0
],
changed_refs
[
0
][
1
],
changed_refs
[
0
][
2
],
self
.
capabilities
()))
want
=
[]
have
=
[]
...
...
@@ -131,7 +129,15 @@
have
.
append
(
changed_ref
[
0
])
self
.
proto
.
write_pkt_line
(
None
)
shas
=
generate_pack_contents
(
want
,
have
)
#write_pack_data(self.write, shas, len(shas))
(
fd
,
tmppath
)
=
tempfile
.
mkstemp
(
suffix
=
"
.pack
"
)
f
=
os
.
fdopen
(
fd
,
'
w
'
)
(
entries
,
sha
)
=
write_pack_data
(
f
,
shas
,
len
(
shas
))
f
=
open
(
tmppath
,
"
r
"
)
self
.
proto
.
write_file
(
f
)
self
.
proto
.
write
(
sha
)
f
.
close
()
def
fetch_pack
(
self
,
path
,
determine_wants
,
graph_walker
,
pack_data
,
progress
):
"""
Retrieve a pack from a git smart server.
...
...
This diff is collapsed.
Click to expand it.
dulwich/protocol.py
+
7
−
0
View file @
f0daee67
...
...
@@ -79,6 +79,13 @@
yield
pkt
pkt
=
self
.
read_pkt_line
()
def
write_file
(
self
,
f
):
try
:
for
line
in
f
:
self
.
write
(
line
)
finally
:
f
.
close
()
def
write_pkt_line
(
self
,
line
):
"""
Sends a
'
pkt line
'
to the remote git process
...
...
This diff is collapsed.
Click to expand it.
dulwich/repo.py
+
0
−
1
View file @
f0daee67
...
...
@@ -361,7 +361,6 @@
commit_data
+=
'
committer
'
+
commit
[
'
committer
'
]
+
"
\n
"
commit_data
+=
"
\n
"
commit_data
+=
commit
[
'
message
'
]
print
commit_data
sha
=
self
.
write_object
(
'
commit
'
,
commit_data
)
return
sha
...
...
This diff is collapsed.
Click to expand it.
git_handler.py
+
34
−
5
View file @
f0daee67
...
...
@@ -2,8 +2,7 @@
import
dulwich
from
dulwich.repo
import
Repo
from
dulwich.client
import
SimpleFetchGraphWalker
from
dulwich.objects
import
hex_to_sha
from
hgext
import
bookmarks
from
mercurial.i18n
import
_
from
mercurial.node
import
bin
,
hex
,
nullid
from
mercurial
import
hg
,
util
,
context
,
error
...
...
@@ -6,8 +5,16 @@
from
hgext
import
bookmarks
from
mercurial.i18n
import
_
from
mercurial.node
import
bin
,
hex
,
nullid
from
mercurial
import
hg
,
util
,
context
,
error
from
dulwich.objects
import
(
Blob
,
Commit
,
ShaFile
,
Tag
,
Tree
,
hex_to_sha
)
import
math
def
seconds_to_offset
(
time
):
...
...
@@ -277,8 +284,6 @@
if
parts
[
0
]
==
'
refs
'
:
# strip off 'refs/heads'
if
parts
[
1
]
==
'
heads
'
:
head
=
"
/
"
.
join
([
v
for
v
in
parts
[
2
:]])
print
ref_name
print
head
local_ref
=
self
.
git
.
ref
(
ref_name
)
if
local_ref
:
if
not
local_ref
==
refs
[
ref_name
]:
...
...
@@ -297,7 +302,31 @@
else
:
shas
.
append
(
next
)
next
=
graph_walker
.
next
()
return
shas
# so now i have the shas, need to turn them into a list of
# tuples (sha, path) for ALL the objects i'm sending
# TODO : don't send blobs or trees they already have
def
get_objects
(
tree
,
path
):
changes
=
list
()
changes
.
append
((
tree
,
path
))
for
(
mode
,
name
,
sha
)
in
tree
.
entries
():
if
mode
==
57344
:
# TODO : properly handle submodules
continue
obj
=
self
.
git
.
get_object
(
sha
)
if
isinstance
(
obj
,
Blob
):
changes
.
append
((
obj
,
path
+
name
))
elif
isinstance
(
obj
,
Tree
):
changes
.
extend
(
get_objects
(
obj
,
path
+
name
+
'
/
'
))
return
changes
objects
=
[]
for
commit_sha
in
shas
:
commit
=
self
.
git
.
commit
(
commit_sha
)
objects
.
append
((
commit
,
'
commit
'
))
tree
=
self
.
git
.
get_object
(
commit
.
tree
)
objects
.
extend
(
get_objects
(
tree
,
'
/
'
)
)
return
objects
def
fetch_pack
(
self
,
remote_name
):
git_url
=
self
.
remote_name_to_url
(
remote_name
)
...
...
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