From 38bd1cb72c5241428dc54fd04f29bb700e5140ee Mon Sep 17 00:00:00 2001 From: DarkXero <81101439+DarkXero-dev@users.noreply.github.com> Date: Wed, 4 Sep 2024 18:52:23 +0300 Subject: [PATCH] Delete push.sh --- push.sh | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100755 push.sh diff --git a/push.sh b/push.sh deleted file mode 100755 index 7cce986..0000000 --- a/push.sh +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/bash -#set -e -################################################################################################################## -# Written to be used on 64 bits computers -# Author : DarkXero -# Website : http://xerolinux.github.io -################################################################################################################## -# change a commit comment -# git commit --amend -m "more info" -# git push --force origin - -# checking if I have the latest files from github -echo "Checking for newer files online first" -git pull - -# Below command will backup everything inside the project folder -git add --all . - -# Give a comment to the commit if you want -echo "####################################" -echo "Write your commit comment!" -echo "####################################" - -read input - -# Committing to the local repository with a message containing the time details and commit text - -git commit -m "$input" - -# Push the local files to github - -git push -f -u origin main - - -echo "################################################################" -echo "################### Git Push Done ######################" -echo "################################################################"