From 67c11b7e0b90488e5b055d49aa81ea98740f213c Mon Sep 17 00:00:00 2001 From: "Eshan Roy (Eshanized)" <148610067+eshanized@users.noreply.github.com> Date: Sun, 16 Jun 2024 23:05:11 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20refactor(remove):=20remove=20ext?= =?UTF-8?q?ra=20script(N/A)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gconfig.sh | 16 ---------------- gpush.sh | 21 --------------------- 2 files changed, 37 deletions(-) delete mode 100755 gconfig.sh delete mode 100755 gpush.sh diff --git a/gconfig.sh b/gconfig.sh deleted file mode 100755 index bafa12fa4..000000000 --- a/gconfig.sh +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/bash - -# Setup Git Credentials - -# Git Credential -username="Abhiraj Roy" -useremail="157954129+iconized@users.noreply.github.com" - -# Git Config -git config --global user.name "$username" -git config --global user.email "$useremail" - -echo -e "\033[0;32mSuccessfully Setup Git Credentials :)" - -# Merge -git config pull.rebase false \ No newline at end of file diff --git a/gpush.sh b/gpush.sh deleted file mode 100755 index 7e3faa7c1..000000000 --- a/gpush.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash - -# Iconized - -pull_from_github(){ - git pull -} - -push_to_github() { - # git pull - git add . - ezcommits - git push -u origin master -} - -main(){ - pull_from_github - push_to_github -} - -main \ No newline at end of file