diff --git a/push.sh b/push.sh new file mode 100644 index 0000000..395d946 --- /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-welcome.git" +BRANCH="main" # 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