refactor: remove previous push script

This commit is contained in:
Eshan Roy (Eshanized)
2024-05-02 22:04:44 +05:30
parent 92ece2b6ea
commit edd47504f9

29
push.sh
View File

@@ -1,28 +1 @@
#!/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 updated the repository 🎉 !!!"
# Git Action
git add .
git commit -m "$MESSAGE"
# git push origin "$BRANCH"