mirror of
https://github.com/Snigdha-OS/snigdhaos-assets.git
synced 2025-12-06 08:03:51 +01:00
14 lines
371 B
Bash
Executable File
14 lines
371 B
Bash
Executable File
#!/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 continuously updating the repository!"
|
|
|
|
# Add all files, commit, and push changes
|
|
git add .
|
|
git commit -m "$MESSAGE"
|
|
git push origin $BRANCH
|