From 0d2e4aee40257292de1dcad06156d4f1386099a0 Mon Sep 17 00:00:00 2001 From: Sheogorath <sheogorath@shivering-isles.com> Date: Fri, 5 Nov 2021 22:36:45 +0100 Subject: [PATCH] feat(git): Add make command to ease git commits to deploy --- utils/git.mk | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 utils/git.mk diff --git a/utils/git.mk b/utils/git.mk new file mode 100644 index 000000000..dece38bf7 --- /dev/null +++ b/utils/git.mk @@ -0,0 +1,5 @@ +.PHONY: commit +commit: ## Commit changes to git, push them to the remote and inform flux about it + git commit -v + git push + make flux-update-git -- GitLab