Proposal provider for destination fields in fetch was inappropriately proposing illegal local expression like HEAD^, while we should propose there only refs or wildcard expressions. Signed-off-by: Marek Zawirski <marek.zawirski@xxxxxxxxx> --- .../egit/ui/internal/components/RefSpecPanel.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/org.spearce.egit.ui/src/org/spearce/egit/ui/internal/components/RefSpecPanel.java b/org.spearce.egit.ui/src/org/spearce/egit/ui/internal/components/RefSpecPanel.java index caef4d2..1621434 100644 --- a/org.spearce.egit.ui/src/org/spearce/egit/ui/internal/components/RefSpecPanel.java +++ b/org.spearce.egit.ui/src/org/spearce/egit/ui/internal/components/RefSpecPanel.java @@ -323,7 +323,7 @@ private static void setControlDecoration(final ControlDecoration control, */ public RefSpecPanel(final Composite parent, final boolean pushSpecs) { this.pushSpecs = pushSpecs; - this.localProposalProvider = new RefContentProposalProvider(true); + this.localProposalProvider = new RefContentProposalProvider(pushSpecs); this.remoteProposalProvider = new RefContentProposalProvider(false); this.imageRegistry = new ImageRegistry(parent.getDisplay()); -- 1.5.6.3 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html