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] =?UTF-8?q?=E2=99=BB=EF=B8=8Frefactor(git):=20create=20@ic?= =?UTF-8?q?onized=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