@eshanized: push via push.sh!!!

This commit is contained in:
2024-03-07 11:30:18 +05:30
parent e4d6a7ce60
commit eee93fbf32
7 changed files with 64 additions and 0 deletions

28
push.sh Executable file
View File

@@ -0,0 +1,28 @@
#!/bin/bash
# A simple script to maintain github repository
# Author : Eshan Roy <eshan@snigdhaos.org>
# Author URL : https://eshanized.github.io/
# REPOSITORY Config
REPO=snigdhaos-system-config
# HOST Config
HOST=https://github.com
# DESTINATION Config
ORG=Snigdha-OS
# SETUP REPO URL
REPO_URL="${HOST}/${ORG}/${REPO}.git"
BRANCH="master" #or "main"
# Commit Message:
MESSAGE="@eshanized: push via push.sh!!!"
# Git Action
git add .
git commit -m "$MESSAGE"
git push origin "$BRANCH"