Merge lp:~jelmer/brz/no-peeled into lp:brz

Proposed by Jelmer Vernooij
Status: Merged
Approved by: Jelmer Vernooij
Approved revision: no longer in the source branch.
Merge reported by: The Breezy Bot
Merged at revision: not available
Proposed branch: lp:~jelmer/brz/no-peeled
Merge into: lp:brz
Diff against target: 13 lines (+3/-0)
1 file modified
breezy/git/interrepo.py (+3/-0)
To merge this branch: bzr merge lp:~jelmer/brz/no-peeled
Reviewer Review Type Date Requested Status
Jelmer Vernooij Approve
Review via email: mp+374409@code.launchpad.net

Commit message

Git: Don't attempt to fetch peeled tags.

Description of the change

Git: Don't attempt to fetch peeled tags.

To post a comment you must log in.
Revision history for this message
Jelmer Vernooij (jelmer) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'breezy/git/interrepo.py'
2--- breezy/git/interrepo.py 2019-06-02 02:35:46 +0000
3+++ breezy/git/interrepo.py 2019-10-27 04:29:47 +0000
4@@ -677,6 +677,9 @@
5 if value == ZERO_SHA:
6 continue
7
8+ if name.endswith(ANNOTATED_TAG_SUFFIX):
9+ continue
10+
11 if name in branches or (include_tags and is_tag(name)):
12 ret.append(value)
13 return ret

Subscribers

People subscribed via source and target branches