2021-04-21 19:53:52 +02:00
|
|
|
|
<#
|
2021-04-07 15:17:49 +02:00
|
|
|
|
.SYNTAX configure-git.ps1 [<full-name>] [<email-address>] [<favorite-editor>]
|
2021-03-22 20:10:18 +01:00
|
|
|
|
.DESCRIPTION sets up the Git user configuration
|
|
|
|
|
.LINK https://github.com/fleschutz/PowerShell
|
|
|
|
|
.NOTES Author: Markus Fleschutz / License: CC0
|
2020-12-29 15:14:21 +01:00
|
|
|
|
#>
|
2020-09-29 20:05:52 +02:00
|
|
|
|
|
2021-02-07 17:31:23 +01:00
|
|
|
|
param($FullName = "", $EmailAddress = "", $FavoriteEditor = "")
|
2021-04-16 20:01:38 +02:00
|
|
|
|
if ($FullName -eq "") { $FullName = read-host "Enter your full name" }
|
2021-06-21 16:19:10 +02:00
|
|
|
|
if ($EmailAddress -eq "") { $EmailAddress = read-host "Enter your e-mail address"}
|
2021-04-16 20:01:38 +02:00
|
|
|
|
if ($FavoriteEditor -eq "") { $FavoriteEditor = read-host "Enter your favorite text editor (emacs,nano,vi,vim,...)" }
|
2021-02-18 20:17:55 +01:00
|
|
|
|
|
2021-02-02 10:27:54 +01:00
|
|
|
|
try {
|
2021-04-17 11:29:32 +02:00
|
|
|
|
$Null = (git --version)
|
|
|
|
|
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
|
2021-02-02 10:27:54 +01:00
|
|
|
|
|
2021-06-28 08:47:43 +02:00
|
|
|
|
# Basic settings:
|
2021-02-13 10:26:14 +01:00
|
|
|
|
& git config --global user.name $FullName
|
|
|
|
|
& git config --global user.email $EmailAddress
|
|
|
|
|
& git config --global core.editor $FavoriteEditor
|
|
|
|
|
& git config --global http.sslVerify false
|
|
|
|
|
& git config --global core.autocrlf false
|
|
|
|
|
& git config --global core.symlinks true
|
2021-02-24 14:13:12 +01:00
|
|
|
|
& git config --global core.longpaths true
|
2021-02-13 10:26:14 +01:00
|
|
|
|
& git config --global init.defaultBranch main
|
2021-06-28 08:42:13 +02:00
|
|
|
|
& git config --global merge.renamelimit 99999
|
2021-06-28 08:47:43 +02:00
|
|
|
|
if ($lastExitCode -ne "0") { throw "'git config' failed (in basic settings)" }
|
2021-06-21 16:19:10 +02:00
|
|
|
|
|
|
|
|
|
# Basic shortcuts:
|
|
|
|
|
& git config --global alias.co "checkout"
|
|
|
|
|
& git config --global alias.br "branch"
|
|
|
|
|
& git config --global alias.ci "commit"
|
|
|
|
|
& git config --global alias.st "status"
|
|
|
|
|
& git config --global alias.pl "pull --recurse-submodules"
|
|
|
|
|
& git config --global alias.ps "push"
|
|
|
|
|
& git config --global alias.mrg "merge --no-commit --no-ff"
|
|
|
|
|
& git config --global alias.chp "cherry-pick --no-commit"
|
|
|
|
|
& git config --global alias.ls "log -n20 --pretty=format:'%Cred%h%Creset%C(yellow)%d%Creset %s %C(bold blue)by %an%Creset %C(green)%cr%Creset' --abbrev-commit"
|
|
|
|
|
& git config --global alias.smu "submodule update --init"
|
2021-06-28 08:47:43 +02:00
|
|
|
|
if ($lastExitCode -ne "0") { throw "'git config' failed (in basic shortcuts)" }
|
2021-06-21 16:19:10 +02:00
|
|
|
|
|
2021-06-28 08:47:43 +02:00
|
|
|
|
"✔️ saved your Git configuration, it's now:"
|
2021-02-13 10:26:14 +01:00
|
|
|
|
& git config --list
|
2021-06-21 16:19:10 +02:00
|
|
|
|
if ($lastExitCode -ne "0") { throw "'git config --list' failed" }
|
2020-10-05 13:12:12 +02:00
|
|
|
|
exit 0
|
2020-12-09 10:30:55 +01:00
|
|
|
|
} catch {
|
2021-05-02 21:30:48 +02:00
|
|
|
|
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2020-12-09 10:30:55 +01:00
|
|
|
|
exit 1
|
|
|
|
|
}
|