Files
snigdhaos-welcome/push.sh
2024-04-11 21:40:29 +05:30

14 lines
358 B
Bash
Executable File

#!/bin/bash
# Set the repository URL and branch
REPO_URL="https://github.com/Snigdha-OS/snigdhaos-welcome.git"
BRANCH="master" # or "main" depending on your repository's default branch
# Commit message
MESSAGE="⏳ @eshanized updated the repository!!!"
# Add all files, commit, and push changes
git add .
git commit -m "$MESSAGE"
git push origin $BRANCH