@eshanized: push via push.sh!!!

This commit is contained in:
2024-03-04 22:34:27 +05:30
parent 04d07925f6
commit 39b75d455f

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-installation
# 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"