From daf53aed620046a738343ae9a6b1fc13dd7ca91a Mon Sep 17 00:00:00 2001 From: "Eshan Roy (Eshanized)" Date: Thu, 2 May 2024 22:21:36 +0530 Subject: [PATCH] refactor(config): create my own git credentials --- config.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 config.sh diff --git a/config.sh b/config.sh new file mode 100755 index 0000000..dc1c396 --- /dev/null +++ b/config.sh @@ -0,0 +1,22 @@ +#!/bin/bash + +# Author : Eshan Roy +# Author URL: https://eshanized.github.io/ + +# Setting up Author's Git Credentials +echo +echo "################################################################################" +echo -e "If you have write Access, create another file excluding the name 'config.sh'" +echo "################################################################################" +echo + +# Git Credentials: +git config --global pull.rebase false # Merge +git config --global user.name "Eshan Roy (Eshanized)" +git config --global user.email "m.eshanized@gmail.com" + +echo +echo "################################################################################" +echo -e "If you have write Access, create another file excluding the name 'config.sh'" +echo "################################################################################" +echo \ No newline at end of file