Show More
@@ -240,15 +240,16 b' def _oldheadssummary(repo, remoteheads, ' | |||
|
240 | 240 | |
|
241 | 241 | def _nowarnheads(pushop): |
|
242 | 242 | # Compute newly pushed bookmarks. We don't warn about bookmarked heads. |
|
243 | ||
|
244 | # internal config: bookmarks.pushing | |
|
245 | newbookmarks = pushop.ui.configlist('bookmarks', 'pushing') | |
|
246 | ||
|
247 | 243 | repo = pushop.repo.unfiltered() |
|
248 | 244 | remote = pushop.remote |
|
249 | 245 | localbookmarks = repo._bookmarks |
|
250 | 246 | remotebookmarks = remote.listkeys('bookmarks') |
|
251 | 247 | bookmarkedheads = set() |
|
248 | ||
|
249 | # internal config: bookmarks.pushing | |
|
250 | newbookmarks = [localbookmarks.expandname(b) | |
|
251 | for b in pushop.ui.configlist('bookmarks', 'pushing')] | |
|
252 | ||
|
252 | 253 | for bm in localbookmarks: |
|
253 | 254 | rnode = remotebookmarks.get(bm) |
|
254 | 255 | if rnode and rnode in repo: |
General Comments 0
You need to be logged in to leave comments.
Login now