##// END OF EJS Templates
phases: properly register excluded changeset when revision are specified...
Pierre-Yves David -
r15951:bd84fc0b stable
parent child Browse files
Show More
@@ -116,7 +116,7 def findcommonoutgoing(repo, other, only
116 116 sets = repo.changelog.findcommonmissing(og.commonheads, onlyheads)
117 117 og._common, allmissing = sets
118 118 og._missing = missing = []
119 og._excluded = excluded = []
119 og.excluded = excluded = []
120 120 for node in allmissing:
121 121 if repo[node].phase() >= phases.secret:
122 122 excluded.append(node)
@@ -171,7 +171,7 Pushing applied patch with --force
171 171 $ hg push --force -r default ../forcepush2
172 172 pushing to ../forcepush2
173 173 searching for changes
174 no changes found
174 no changes to push but 1 secret changesets
175 175 $ hg phase -d 'mq()'
176 176 $ hg push --force -r default ../forcepush2
177 177 pushing to ../forcepush2
General Comments 0
You need to be logged in to leave comments. Login now