mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 09:04:18 +01:00
13 lines
308 B
PowerShell
13 lines
308 B
PowerShell
#
|
|
|
|
|
|
$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
|