PowerShell/Scripts/init_git.ps1
2020-06-15 14:55:54 +02:00

17 lines
446 B
PowerShell
Executable File

#!/snap/bin/powershell
#
# Description: initializes Git
# Author: Markus Fleschutz
# Source: github.com/fleschutz/PowerShell
# License: CC0
#
$UserName = read-host "Your full name: "
$UserEmail = read-host "Your email address: "
$UserEditor = read-host "Your favorite editor (nano, vi, emacs): "
git config --global user.name $UserName
git config --global user.email $UserEmail
git config --global core.editor $UserEditor
echo "Done."
exit 0