From 9a616eb5dd73c9075d2451a8f7329037e68047ec Mon Sep 17 00:00:00 2001 From: Abhiraj Roy <157954129+iconized@users.noreply.github.com> Date: Mon, 3 Jun 2024 03:50:36 +0530 Subject: [PATCH] :books: docs(gitconfig): create config script --- config | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 config diff --git a/config b/config new file mode 100644 index 0000000..bafa12f --- /dev/null +++ b/config @@ -0,0 +1,16 @@ +#!/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