From 9fb1f939a6943a58d7a1a9d705840958371ae450 Mon Sep 17 00:00:00 2001 From: zontreck Date: Sat, 5 Oct 2024 11:31:34 -0700 Subject: [PATCH] build(root): add helper scripts for commit and push Signed-off-by: zontreck --- commit | 5 +++++ push | 4 ++++ 2 files changed, 9 insertions(+) create mode 100755 commit create mode 100755 push diff --git a/commit b/commit new file mode 100755 index 0000000..d80b4d5 --- /dev/null +++ b/commit @@ -0,0 +1,5 @@ +#!/bin/bash + +source venv/bin/activate +git add --all . +cz commit -- -s diff --git a/push b/push new file mode 100755 index 0000000..9b6b6f6 --- /dev/null +++ b/push @@ -0,0 +1,4 @@ +#!/bin/bash + +git push --all +git push --tags