mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-03-26 14:26:10 +01:00
Added clean-branch.ps1
This commit is contained in:
parent
93966ea267
commit
8a4e6eb5ba
@ -5,6 +5,7 @@ check-ipv6-address.ps1, checks the given IPv6 address for validity
|
|||||||
check-mac-address.ps1, checks the given MAC address for validity
|
check-mac-address.ps1, checks the given MAC address for validity
|
||||||
check-symlinks.ps1, checks every symlink in the given directory tree
|
check-symlinks.ps1, checks every symlink in the given directory tree
|
||||||
check-xml-file.ps1, checks the given XML file for validity
|
check-xml-file.ps1, checks the given XML file for validity
|
||||||
|
clean-branch.ps1, cleans the current Git branch (and submodules) from generated files
|
||||||
clone-repos.ps1, clones well-known Git repositories
|
clone-repos.ps1, clones well-known Git repositories
|
||||||
close-calculator.ps1, closes the calculator program gracefully
|
close-calculator.ps1, closes the calculator program gracefully
|
||||||
close-chrome.ps1, closes Google Chrome gracefully
|
close-chrome.ps1, closes Google Chrome gracefully
|
||||||
|
|
@ -11,6 +11,7 @@ Table of Contents
|
|||||||
* [check-mac-address.ps1](Scripts/check-mac-address.ps1) - checks the given MAC address for validity
|
* [check-mac-address.ps1](Scripts/check-mac-address.ps1) - checks the given MAC address for validity
|
||||||
* [check-symlinks.ps1](Scripts/check-symlinks.ps1) - checks every symlink in the given directory tree
|
* [check-symlinks.ps1](Scripts/check-symlinks.ps1) - checks every symlink in the given directory tree
|
||||||
* [check-xml-file.ps1](Scripts/check-xml-file.ps1) - checks the given XML file for validity
|
* [check-xml-file.ps1](Scripts/check-xml-file.ps1) - checks the given XML file for validity
|
||||||
|
* [clean-branch.ps1](Scripts/clean-branch.ps1) - cleans the current Git branch (and submodules) from generated files
|
||||||
* [clone-repos.ps1](Scripts/clone-repos.ps1) - clones well-known Git repositories
|
* [clone-repos.ps1](Scripts/clone-repos.ps1) - clones well-known Git repositories
|
||||||
* [close-calculator.ps1](Scripts/close-calculator.ps1) - closes the calculator program gracefully
|
* [close-calculator.ps1](Scripts/close-calculator.ps1) - closes the calculator program gracefully
|
||||||
* [close-chrome.ps1](Scripts/close-chrome.ps1) - closes Google Chrome gracefully
|
* [close-chrome.ps1](Scripts/close-chrome.ps1) - closes Google Chrome gracefully
|
||||||
|
30
Scripts/clean-branch.ps1
Executable file
30
Scripts/clean-branch.ps1
Executable file
@ -0,0 +1,30 @@
|
|||||||
|
#!/bin/powershell
|
||||||
|
<#
|
||||||
|
.SYNTAX ./clean-branch.ps1
|
||||||
|
.DESCRIPTION cleans the current Git branch (and submodules) from generated files
|
||||||
|
.LINK https://github.com/fleschutz/PowerShell
|
||||||
|
.NOTES Author: Markus Fleschutz / License: CC0
|
||||||
|
#>
|
||||||
|
|
||||||
|
try {
|
||||||
|
& git --version
|
||||||
|
} catch {
|
||||||
|
write-error "ERROR: can't execute 'git' - make sure Git is installed and available"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
& git clean --force -d -x
|
||||||
|
if ($lastExitCode -ne "0") { throw "'git clean' failed" }
|
||||||
|
|
||||||
|
& git submodule foreach --recursive git clean --force -d -x
|
||||||
|
if ($lastExitCode -ne "0") { throw "'git clean' in submodules failed" }
|
||||||
|
|
||||||
|
& git status
|
||||||
|
if ($lastExitCode -ne "0") { throw "'git status' failed" }
|
||||||
|
|
||||||
|
exit 0
|
||||||
|
} catch {
|
||||||
|
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||||
|
exit 1
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user