chore: re-upload all files

This commit is contained in:
2024-03-31 11:16:03 +05:30
parent a5c5cd39bc
commit 55f748db5f
27 changed files with 188 additions and 0 deletions

13
push.sh Executable 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