From 6ba3985908498235b2ef11df2681d4072293da64 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Fri, 2 Nov 2018 12:13:09 +0800 Subject: [PATCH 1/1] GitMonitorQueue.vala --- GitMonitorQueue.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GitMonitorQueue.vala b/GitMonitorQueue.vala index c4cf9d98..561aa669 100644 --- a/GitMonitorQueue.vala +++ b/GitMonitorQueue.vala @@ -44,7 +44,7 @@ public class GitMonitorQueue : MonitorNamePathDir { this.repo = GitRepo.get(this.gitpath); // trigger the suggestion to start a new branch - if (!this.shouldIgnore()) { + if (!this.shouldIgnore() && !this.repo.currentBranch.name.has_prefix("wip_")) { NewBranch.singleton().show(this.repo); } } -- 2.39.2