From bcc565d2b0a945a1f99cace81f6fcecd8b7ae995 Mon Sep 17 00:00:00 2001 From: Abhiraj Roy <157954129+iconized@users.noreply.github.com> Date: Mon, 3 Jun 2024 01:12:14 +0530 Subject: [PATCH 1/2] =?UTF-8?q?=E2=99=BB=EF=B8=8Frefactor(git):=20create?= =?UTF-8?q?=20@iconized=20git=20credential=20script?= 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> --- gconfig.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 gconfig.sh diff --git a/gconfig.sh b/gconfig.sh new file mode 100644 index 00000000..34bf8827 --- /dev/null +++ b/gconfig.sh @@ -0,0 +1,13 @@ +#!/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 :)" \ No newline at end of file From 77950a38027de4d4dc488b71820b92400eea0c54 Mon Sep 17 00:00:00 2001 From: Abhiraj Roy <157954129+iconized@users.noreply.github.com> Date: Mon, 3 Jun 2024 01:14:02 +0530 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=90=9Bfix(permission):=20set=20permis?= =?UTF-8?q?sion=20to=2010755?= 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> --- gconfig.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 gconfig.sh diff --git a/gconfig.sh b/gconfig.sh old mode 100644 new mode 100755