@eshanized pushed another commit via script 🔥🔥🔥

This commit is contained in:
2024-03-08 13:18:46 +05:30
parent 6d3f6fc588
commit 13be99228d

14
config.sh Normal file
View File

@@ -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!"