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