Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
mercurial-devel
Manage
Activity
Members
Labels
Plan
Wiki
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
Environments
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
mercurial-devel
Commits
dbdb8aa7
Commit
dbdb8aa7
authored
13 years ago
by
Arne Babenhauserheide
Browse files
Options
Downloads
Patches
Plain Diff
clone: get all bookmarks before updating
parent
cc24e4ed
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
mercurial/hg.py
+15
-15
15 additions, 15 deletions
mercurial/hg.py
tests/test-https.t
+1
-1
1 addition, 1 deletion
tests/test-https.t
with
16 additions
and
16 deletions
mercurial/hg.py
+
15
−
15
View file @
dbdb8aa7
...
...
@@ -353,6 +353,21 @@
if
dircleanup
:
dircleanup
.
close
()
# clone all bookmarks
if
destrepo
.
local
()
and
srcrepo
.
capable
(
"
pushkey
"
):
rb
=
srcrepo
.
listkeys
(
'
bookmarks
'
)
for
k
,
n
in
rb
.
iteritems
():
try
:
m
=
destrepo
.
lookup
(
n
)
destrepo
.
_bookmarks
[
k
]
=
m
except
error
.
RepoLookupError
:
pass
if
rb
:
bookmarks
.
write
(
destrepo
)
elif
srcrepo
.
local
()
and
destrepo
.
capable
(
"
pushkey
"
):
for
k
,
n
in
srcrepo
.
_bookmarks
.
iteritems
():
destrepo
.
pushkey
(
'
bookmarks
'
,
k
,
''
,
hex
(
n
))
if
destrepo
.
local
():
fp
=
destrepo
.
opener
(
"
hgrc
"
,
"
w
"
,
text
=
True
)
fp
.
write
(
"
[paths]
\n
"
)
...
...
@@ -381,21 +396,6 @@
destrepo
.
ui
.
status
(
_
(
"
updating to branch %s
\n
"
)
%
bn
)
_update
(
destrepo
,
uprev
)
# clone all bookmarks
if
destrepo
.
local
()
and
srcrepo
.
capable
(
"
pushkey
"
):
rb
=
srcrepo
.
listkeys
(
'
bookmarks
'
)
for
k
,
n
in
rb
.
iteritems
():
try
:
m
=
destrepo
.
lookup
(
n
)
destrepo
.
_bookmarks
[
k
]
=
m
except
error
.
RepoLookupError
:
pass
if
rb
:
bookmarks
.
write
(
destrepo
)
elif
srcrepo
.
local
()
and
destrepo
.
capable
(
"
pushkey
"
):
for
k
,
n
in
srcrepo
.
_bookmarks
.
iteritems
():
destrepo
.
pushkey
(
'
bookmarks
'
,
k
,
''
,
hex
(
n
))
return
srcrepo
,
destrepo
finally
:
release
(
srclock
,
destlock
)
...
...
This diff is collapsed.
Click to expand it.
tests/test-https.t
+
1
−
1
View file @
dbdb8aa7
...
...
@@ -118,5 +118,6 @@
adding
manifests
adding
file
changes
added
1
changesets
with
4
changes
to
4
files
warning:
localhost
certificate
with
fingerprint
91
:
4
f:1a:ff:87:24:9c:09:b6:85:9b:88:b1:90:6d:30:75:64:91:ca
not
verified
(
check
hostfingerprints
or
web
.
cacerts
config
setting
)
updating
to
branch
default
4
files
updated
,
0
files
merged
,
0
files
removed
,
0
files
unresolved
...
...
@@ -121,6 +122,5 @@
updating
to
branch
default
4
files
updated
,
0
files
merged
,
0
files
removed
,
0
files
unresolved
warning:
localhost
certificate
with
fingerprint
91
:
4
f:1a:ff:87:24:9c:09:b6:85:9b:88:b1:90:6d:30:75:64:91:ca
not
verified
(
check
hostfingerprints
or
web
.
cacerts
config
setting
)
$
hg
verify
-
R
copy
-
pull
checking
changesets
checking
manifests
...
...
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