Create push.sh

This commit is contained in:
Eshan Roy (Eshanized)
2024-02-25 17:33:39 +05:30
committed by GitHub
parent 119994cae8
commit e732825436

13
push.sh Normal file
View File

@@ -0,0 +1,13 @@
#!/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