2021-09-27 10:38:12 +02:00
|
|
|
|
<#
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.SYNOPSIS
|
2022-01-18 21:02:19 +01:00
|
|
|
|
Switches the branch in a Git repository
|
2021-10-04 21:29:23 +02:00
|
|
|
|
.DESCRIPTION
|
2022-01-30 10:49:30 +01:00
|
|
|
|
This PowerShell script switches to another branch in a Git repository (including submodules).
|
2021-10-16 16:50:10 +02:00
|
|
|
|
.PARAMETER BranchName
|
|
|
|
|
Specifies the branch name
|
|
|
|
|
.PARAMETER RepoDir
|
|
|
|
|
Specifies the path to the Git repository
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.EXAMPLE
|
2021-09-27 08:35:45 +02:00
|
|
|
|
PS> ./switch-branch main C:\MyRepo
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
2022-01-30 10:49:30 +01:00
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz / License: CC0
|
2021-02-13 10:26:14 +01:00
|
|
|
|
#>
|
|
|
|
|
|
2021-07-15 15:51:22 +02:00
|
|
|
|
param([string]$BranchName = "", [string]$RepoDir = "$PWD")
|
2021-02-13 10:26:14 +01:00
|
|
|
|
|
|
|
|
|
try {
|
2021-07-15 15:51:22 +02:00
|
|
|
|
if ($BranchName -eq "") { $BranchName = read-host "Enter name of branch to switch to" }
|
2022-03-08 11:01:01 +01:00
|
|
|
|
if ($RepoDir -eq "") { $RepoDir = read-host "Enter path to the Git repository" }
|
2021-07-15 15:51:22 +02:00
|
|
|
|
|
2021-09-01 10:26:05 +02:00
|
|
|
|
$StopWatch = [system.diagnostics.stopwatch]::startNew()
|
2021-10-01 08:31:48 +02:00
|
|
|
|
|
2022-01-18 21:02:19 +01:00
|
|
|
|
"⏳ Step 1/5: Checking requirements... "
|
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)
|
2022-03-03 09:49:58 +01:00
|
|
|
|
if ($lastExitCode -ne "0") { throw "'git status' in $RepoDir failed with exit code $lastExitCode" }
|
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
|
|
|
|
|
2022-01-18 21:02:19 +01:00
|
|
|
|
"⏳ Step 2/5: Fetching latest updates..."
|
2021-10-06 09:10:49 +02:00
|
|
|
|
& git fetch --all --recurse-submodules --prune --prune-tags --force
|
2022-03-03 09:49:58 +01:00
|
|
|
|
if ($lastExitCode -ne "0") { throw "'git fetch --all' failed with exit code $lastExitCode" }
|
2021-03-17 10:45:19 +01:00
|
|
|
|
|
2022-01-18 21:02:19 +01:00
|
|
|
|
"⏳ Step 3/5: Switching branch..."
|
2021-06-17 08:10:44 +02:00
|
|
|
|
& git checkout --recurse-submodules "$BranchName"
|
2022-03-03 09:49:58 +01:00
|
|
|
|
if ($lastExitCode -ne "0") { throw "'git checkout $BranchName' failed with exit code $lastExitCode" }
|
2021-02-15 10:56:22 +01:00
|
|
|
|
|
2022-01-18 21:02:19 +01:00
|
|
|
|
"⏳ Step 4/5: Pulling updates..."
|
2021-06-17 08:10:44 +02:00
|
|
|
|
& git pull --recurse-submodules
|
2022-03-03 09:49:58 +01:00
|
|
|
|
if ($lastExitCode -ne "0") { throw "'git pull' failed with exit code $lastExitCode" }
|
2021-04-23 08:56:09 +02:00
|
|
|
|
|
2022-01-18 21:02:19 +01:00
|
|
|
|
"⏳ Step 5/5: Updating submodules..."
|
2021-02-15 11:34:05 +01:00
|
|
|
|
& git submodule update --init --recursive
|
2022-03-03 09:49:58 +01:00
|
|
|
|
if ($lastExitCode -ne "0") { throw "'git submodule update --init --recursive' failed with exit code $lastExitCode" }
|
2021-02-15 11:34:05 +01:00
|
|
|
|
|
2021-05-27 10:14:12 +02:00
|
|
|
|
$RepoDirName = (get-item "$RepoDir").Name
|
2021-09-01 10:26:05 +02:00
|
|
|
|
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
|
2022-03-08 11:01:01 +01:00
|
|
|
|
"✔️ switched Git repo 📂$RepoDirName to $BranchName branch in $Elapsed sec"
|
2021-09-27 10:09:45 +02:00
|
|
|
|
exit 0 # success
|
2021-02-13 10:26:14 +01:00
|
|
|
|
} catch {
|
2022-04-13 12:06:32 +02:00
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2021-02-13 10:26:14 +01:00
|
|
|
|
exit 1
|
|
|
|
|
}
|