Rename to clean-repo.ps1

This commit is contained in:
Markus Fleschutz 2021-04-01 14:27:45 +02:00
parent d0e2939a73
commit 20c1d4beec
3 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ check-symlinks.ps1, checks every symlink in the given directory tree
check-windows-system-files.ps1, checks the validity of the Windows system files
check-xml-file.ps1, checks the given XML file for validity
cherry-picker.ps1, cherry-picks a Git commit into multiple branches
clean-branch.ps1, cleans the current Git branch (including submodules) from generated files
clean-repo.ps1, cleans the current/given Git repository from untracked files (including submodules)
clone-repos.ps1, clones well-known Git repositories
close-calculator.ps1, closes the calculator program gracefully
close-chrome.ps1, closes Google Chrome gracefully

1 Script Description
13 check-windows-system-files.ps1 checks the validity of the Windows system files
14 check-xml-file.ps1 checks the given XML file for validity
15 cherry-picker.ps1 cherry-picks a Git commit into multiple branches
16 clean-branch.ps1 clean-repo.ps1 cleans the current Git branch (including submodules) from generated files cleans the current/given Git repository from untracked files (including submodules)
17 clone-repos.ps1 clones well-known Git repositories
18 close-calculator.ps1 closes the calculator program gracefully
19 close-chrome.ps1 closes Google Chrome gracefully

View File

@ -112,7 +112,7 @@ Mega Collection of PowerShell Scripts
📝 PowerShell Scripts for Git
------------------------------
* [cherry-picker.ps1](Scripts/cherry-picker.ps1) - cherry-picks a Git commit into multiple branches
* [clean-branch.ps1](Scripts/clean-branch.ps1) - cleans the current Git branch (including submodules) from generated files
* [clean-repo.ps1](Scripts/clean-repo.ps1) - cleans the current/given Git repository from untracked files (including submodules)
* [clone-repos.ps1](Scripts/clone-repos.ps1) - clones well-known Git repositories
* [configure-git.ps1](Scripts/configure-git.ps1) - sets up the Git user configuration
* [create-branch.ps1](Scripts/create-branch.ps1) - creates a new branch in the current/given Git repository

View File

@ -1,6 +1,6 @@
#!/bin/powershell
<#
.SYNTAX ./clean-branch.ps1 [<repo-dir>]
.SYNTAX ./clean-repo.ps1 [<repo-dir>]
.DESCRIPTION cleans the current/given Git repository from untracked files (including submodules, e.g. for a fresh build)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0