mirror of
https://github.com/Snigdha-OS/snigdhaos-welcome.git
synced 2025-09-20 22:14:56 +02:00
Create push.sh
This commit is contained in:

committed by
GitHub

parent
43f6e26265
commit
47731bb811
13
push.sh
Normal file
13
push.sh
Normal file
@@ -0,0 +1,13 @@
|
||||
#!/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
|
Reference in New Issue
Block a user