Files
snigdhaos-assets/push.sh
Eshan Roy (Eshanized) e732825436 Create push.sh
2024-02-25 17:33:39 +05:30

14 lines
346 B
Bash

#!/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