mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-14 03:54:46 +01:00
21 lines
539 B
PowerShell
Executable File
21 lines
539 B
PowerShell
Executable File
#!/snap/bin/powershell
|
|
|
|
# Syntax: ./init-git.ps1
|
|
# Description: initializes the Git configuration
|
|
# 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): "
|
|
|
|
try {
|
|
git config --global user.name $UserName
|
|
git config --global user.email $UserEmail
|
|
git config --global core.editor $UserEditor
|
|
echo "Done."
|
|
exit 0
|
|
} catch { Write-Error $Error[0] }
|
|
exit 1
|