mirror of
https://github.com/Snigdha-OS/snigdhaos-pkgbuilds.git
synced 2026-02-05 08:03:51 +01:00
15 lines
273 B
Bash
15 lines
273 B
Bash
#!/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!"
|