From a207eb2fc8ab728834bae7a2cfa3a5827b1ec817 Mon Sep 17 00:00:00 2001 From: Frostebite Date: Fri, 13 Aug 2021 21:41:57 +0100 Subject: [PATCH] add script to commit and push in one action in codespaces --- scripts/commitAndPush.sh | 1 + 1 file changed, 1 insertion(+) create mode 100755 scripts/commitAndPush.sh diff --git a/scripts/commitAndPush.sh b/scripts/commitAndPush.sh new file mode 100755 index 00000000..20bec0a3 --- /dev/null +++ b/scripts/commitAndPush.sh @@ -0,0 +1 @@ +yarn build; git add .; git commit -m "$1" -q; git push