makefile: add a target to clean bugs on a remote

Michael Muré created

Change summary

Makefile | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)

Detailed changes

Makefile 🔗

@@ -19,4 +19,7 @@ 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
+clean-remote-bugs:
+	git ls-remote origin "refs/bugs/*" | cut -f 2 | xargs -r git push origin -d
+
+.PHONY: build install test pack-webui clean-local-bugs clean-remote-bugs