From 13be99228dfa402c65bf07abc0e19595938e91ef Mon Sep 17 00:00:00 2001 From: "Eshan Roy (Eshanized)" Date: Fri, 8 Mar 2024 13:18:46 +0530 Subject: [PATCH] =?UTF-8?q?@eshanized=20pushed=20another=20commit=20via=20?= =?UTF-8?q?script=20=F0=9F=94=A5=F0=9F=94=A5=F0=9F=94=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 config.sh diff --git a/config.sh b/config.sh new file mode 100644 index 00000000..36f8be8c --- /dev/null +++ b/config.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +# Git Configuration Script + +echo "Welcome to Git Configuration Script!" + +name="Eshan Roy" +email="src.eshan@gmail.com" + +# Set user name and email +git config --global user.name "$name" +git config --global user.email "$email" + +echo "Git configuration completed!"