mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-09 05:04:39 +02:00
Renamed to configure-git.ps1
This commit is contained in:
@ -1,19 +1,21 @@
|
||||
#!/snap/bin/powershell
|
||||
|
||||
# Syntax: ./init-git.ps1
|
||||
# Description: initializes the Git configuration
|
||||
# Syntax: ./configure-git.ps1
|
||||
# Description: sets up the Git configuration
|
||||
# Author: Markus Fleschutz
|
||||
# Source: github.com/fleschutz/PowerShell
|
||||
# License: CC0
|
||||
# NOTE: requires installation of Git
|
||||
|
||||
$UserName = read-host "Enter your full name"
|
||||
$UserEmail = read-host "Enter your email address"
|
||||
$UserEditor = read-host "Enter your favorite editor (nano, vi, emacs)"
|
||||
$UserEditor = read-host "Enter 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
|
||||
git config --global init.defaultBranch main
|
||||
echo "Done."
|
||||
exit 0
|
||||
} catch { Write-Error $Error[0] }
|
Reference in New Issue
Block a user