mirror of
https://github.com/Snigdha-OS/snigdhaos-welcome.git
synced 2025-12-06 07:53:51 +01:00
14 lines
345 B
Bash
14 lines
345 B
Bash
#!/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
|