Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hg-git
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
heptapod
hg-git
Commits
d4693892
Commit
d4693892
authored
9 years ago
by
Sean Farley
Browse files
Options
Downloads
Patches
Plain Diff
revsets: use baseset instead of raw list
We fallback to using a standard set if baseset is not available
parent
f05962b0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
hggit/__init__.py
+11
-2
11 additions, 2 deletions
hggit/__init__.py
with
11 additions
and
2 deletions
hggit/__init__.py
+
11
−
2
View file @
d4693892
...
...
@@ -62,6 +62,14 @@
# The ignore module disappeared in Mercurial 3.5
ignoremod
=
False
baseset
=
set
try
:
baseset
=
revset
.
baseset
except
AttributeError
:
# baseset was added in hg 3.0
pass
demandimport
.
ignore
.
extend
([
'
collections
'
,
])
...
...
@@ -338,7 +346,8 @@
revset
.
getargs
(
x
,
0
,
0
,
"
fromgit takes no arguments
"
)
git
=
repo
.
githandler
node
=
repo
.
changelog
.
node
return
[
r
for
r
in
subset
if
git
.
map_git_get
(
hex
(
node
(
r
)))
is
not
None
]
return
baseset
(
r
for
r
in
subset
if
git
.
map_git_get
(
hex
(
node
(
r
)))
is
not
None
)
def
revset_gitnode
(
repo
,
subset
,
x
):
'''
``gitnode(hash)``
...
...
@@ -355,7 +364,7 @@
if
gitnode
is
None
:
return
False
return
rev
in
[
gitnode
,
gitnode
[:
12
]]
return
[
r
for
r
in
subset
if
matches
(
r
)
]
return
baseset
(
r
for
r
in
subset
if
matches
(
r
)
)
def
gitnodekw
(
**
args
):
"""
:gitnode: String. The Git changeset identification hash, as a 40 hexadecimal digit string.
"""
...
...
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