aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-08-16 18:20:11 +0200
committerMichael Muré <batolettre@gmail.com>2018-08-16 18:20:11 +0200
commitf510e43418aef31e8521d346abdcda6c38f34eaf (patch)
tree799a9609b5044d5d436f8f383fe796b9169cf25e /Makefile
parent51b0d70985d7c9daaeb80e0216818fa3011653b5 (diff)
downloadgit-bug-f510e43418aef31e8521d346abdcda6c38f34eaf.tar.gz
makefile: add a target to remove all local bugs
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 592dc524..17706007 100644
--- a/Makefile
+++ b/Makefile
@@ -15,4 +15,8 @@ pack-webui:
npm run --prefix webui build
go run webui/pack_webui.go
-.PHONY: build install test pack-webui
+clean-local-bugs:
+ git for-each-ref refs/bugs/ | cut -f 2 | xargs -r -n 1 git update-ref -d
+ git for-each-ref refs/remotes/origin/bugs/ | cut -f 2 | xargs -r -n 1 git update-ref -d
+
+.PHONY: build install test pack-webui clean-local-bugs