From d890407ee57a91b7caf1ea087fc3445a2b749a33 Mon Sep 17 00:00:00 2001 From: Abhiraj Roy <157954129+iconized@users.noreply.github.com> Date: Mon, 3 Jun 2024 01:23:13 +0530 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=90=9Bfix(ignore):=20remove=20non=20n?= =?UTF-8?q?eeded=20exts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Abhiraj Roy <157954129+iconized@users.noreply.github.com> --- .gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 51ef16dd..d2bd27ad 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ +# Removing non essentails to git ignore + *.zst +*.sig *pkg -*src +*src \ No newline at end of file From 0b2a3d262aac148f9332c4d657266a6df3550223 Mon Sep 17 00:00:00 2001 From: Abhiraj Roy <157954129+iconized@users.noreply.github.com> Date: Mon, 3 Jun 2024 01:27:04 +0530 Subject: [PATCH 2/2] =?UTF-8?q?=E2=99=BB=EF=B8=8Frefactor(@iconized):=20cr?= =?UTF-8?q?eate=20own=20script=20rather=20than=20commitizen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Abhiraj Roy <157954129+iconized@users.noreply.github.com> --- gpush.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 gpush.sh diff --git a/gpush.sh b/gpush.sh new file mode 100755 index 00000000..7e3faa7c --- /dev/null +++ b/gpush.sh @@ -0,0 +1,21 @@ +#!/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