PowerShell/Scripts/switch-branch.ps1

43 lines
1.6 KiB
PowerShell
Raw Normal View History

2021-04-21 19:53:52 +02:00
<#
2021-04-07 15:17:49 +02:00
.SYNTAX switch-branch.ps1 [<branch-name>] [<repo-dir>]
2021-03-22 20:10:18 +01:00
.DESCRIPTION switches the branch in the current/given Git repository (including submodules)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
2021-02-13 10:26:14 +01:00
#>
2021-04-01 14:10:20 +02:00
param($BranchName = "", $RepoDir = "$PWD")
2021-04-16 18:58:19 +02:00
if ($BranchName -eq "") { $BranchName = read-host "Enter name of branch to switch to" }
2021-02-13 10:26:14 +01:00
try {
2021-04-22 09:55:54 +02:00
$RepoDir = resolve-path "$RepoDir"
2021-03-16 08:45:53 +01:00
if (-not(test-path "$RepoDir" -pathType container)) { throw "Can't access directory: $RepoDir" }
set-location "$RepoDir"
2021-02-28 18:49:53 +01:00
2021-04-17 11:29:32 +02:00
$Null = (git --version)
2021-04-01 14:10:20 +02:00
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
$Result = (git status)
if ($lastExitCode -ne "0") { throw "'git status' failed in $RepoDir" }
2021-04-22 09:47:48 +02:00
if ("$Result" -notmatch "nothing to commit, working tree clean") { throw "Git repository is NOT clean: $Result" }
2021-04-01 14:10:20 +02:00
2021-05-27 10:14:12 +02:00
"🢃 Fetching updates..."
2021-05-05 16:46:03 +02:00
& git fetch --all --recurse-submodules --jobs=4
if ($lastExitCode -ne "0") { throw "'git fetch -all --recurse-submodules' failed" }
2021-03-17 10:45:19 +01:00
2021-04-23 08:56:09 +02:00
& git switch "$BranchName"
2021-04-01 14:10:20 +02:00
if ($lastExitCode -ne "0") { throw "'git switch $BranchName' failed" }
2021-02-15 10:56:22 +01:00
2021-04-23 08:56:09 +02:00
& git pull
if ($lastExitCode -ne "0") { throw "'git pull' failed" }
2021-02-15 11:34:05 +01:00
& git submodule update --init --recursive
if ($lastExitCode -ne "0") { throw "'git submodule update' failed" }
2021-05-27 10:14:12 +02:00
$RepoDirName = (get-item "$RepoDir").Name
"✔️ switched Git repository 📂$RepoDirName to branch '$BranchName'"
2021-02-13 10:26:14 +01:00
exit 0
} catch {
2021-05-02 21:30:48 +02:00
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-02-13 10:26:14 +01:00
exit 1
}