From e7328254364743e786207b7b2ed017312a852a42 Mon Sep 17 00:00:00 2001 From: "Eshan Roy (Eshanized)" <148610067+eshanized@users.noreply.github.com> Date: Sun, 25 Feb 2024 17:33:39 +0530 Subject: [PATCH] Create push.sh --- push.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 push.sh diff --git a/push.sh b/push.sh new file mode 100644 index 0000000..8addd79 --- /dev/null +++ b/push.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +# Set the repository URL and branch +REPO_URL="https://github.com/Snigdha-OS/snigdhaos-assets.git" +BRANCH="master" # or "master" depending on your repository's default branch + +# Commit message +MESSAGE="@eshanized: push via script" + +# Add all files, commit, and push changes +git add . +git commit -m "$MESSAGE" +git push origin $BRANCH