From 7e7aef2efa342c18d62b12bc673942b4a9df6fb7 Mon Sep 17 00:00:00 2001 From: "stephan.raabe" Date: Thu, 2 Feb 2023 12:27:22 +0100 Subject: [PATCH] Add Ranger --- gitpush.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 gitpush.sh diff --git a/gitpush.sh b/gitpush.sh new file mode 100755 index 0000000..e5cb6dd --- /dev/null +++ b/gitpush.sh @@ -0,0 +1,9 @@ +#!/bin/sh +# + +echo -e "Enter the git commit message: \c " +read comment +git add * +git commit -m "$comment" +git push +