From e09994d010b9fcd5e68f42af37d89297199fad37 Mon Sep 17 00:00:00 2001 From: alex Date: Thu, 25 Jan 2024 16:46:22 +0100 Subject: [PATCH] added readme --- README.md | 1 + commit_and_push.sh | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 README.md create mode 100755 commit_and_push.sh diff --git a/README.md b/README.md new file mode 100644 index 0000000..a28e0fe --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +## This server processes the qrcode requests on our merchandise diff --git a/commit_and_push.sh b/commit_and_push.sh new file mode 100755 index 0000000..0e290f2 --- /dev/null +++ b/commit_and_push.sh @@ -0,0 +1,7 @@ +git add * + +read -p "Commit message: " commit_message + +git commit -m "$commit_message" + +git push -u origin master \ No newline at end of file