1
0
Fork 0
Scripts/git-config-user.sh
2021-06-30 00:36:37 +02:00

7 lines
165 B
Bash
Executable file

#!/bin/bash
# Quickly setup user name and email.
read -p "User name: " name
git config user.name "$name"
read -p "User email: " email
git config user.email "$email"