##// 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 b' def findcommonoutgoing(repo, other, only'
116 sets = repo.changelog.findcommonmissing(og.commonheads, onlyheads)
116 sets = repo.changelog.findcommonmissing(og.commonheads, onlyheads)
117 og._common, allmissing = sets
117 og._common, allmissing = sets
118 og._missing = missing = []
118 og._missing = missing = []
119 og._excluded = excluded = []
119 og.excluded = excluded = []
120 for node in allmissing:
120 for node in allmissing:
121 if repo[node].phase() >= phases.secret:
121 if repo[node].phase() >= phases.secret:
122 excluded.append(node)
122 excluded.append(node)
@@ -171,7 +171,7 b' Pushing applied patch with --force'
171 $ hg push --force -r default ../forcepush2
171 $ hg push --force -r default ../forcepush2
172 pushing to ../forcepush2
172 pushing to ../forcepush2
173 searching for changes
173 searching for changes
174 no changes found
174 no changes to push but 1 secret changesets
175 $ hg phase -d 'mq()'
175 $ hg phase -d 'mq()'
176 $ hg push --force -r default ../forcepush2
176 $ hg push --force -r default ../forcepush2
177 pushing to ../forcepush2
177 pushing to ../forcepush2
General Comments 0
You need to be logged in to leave comments. Login now