mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-05-08 17:44:37 +02:00
Update the description
This commit is contained in:
parent
27e4dfb3da
commit
242da20345
@ -42,8 +42,8 @@ inspect-exe.ps1, prints basic information of the given executable file
|
|||||||
list-aliases.ps1, lists all PowerShell aliases
|
list-aliases.ps1, lists all PowerShell aliases
|
||||||
list-anagrams.ps1, lists all anagrams of the given word
|
list-anagrams.ps1, lists all anagrams of the given word
|
||||||
list-automatic-variables.ps1, lists the automatic variables of PowerShell
|
list-automatic-variables.ps1, lists the automatic variables of PowerShell
|
||||||
list-branches.ps1, lists the branches of the current/given Git repository
|
list-branches.ps1, lists the Git branches in the current/given repository
|
||||||
list-commits.ps1, lists the commits of the current/given Git repository
|
list-commits.ps1, lists the Git commits in the current/given repository
|
||||||
list-current-timezone.ps1, lists the current time zone details
|
list-current-timezone.ps1, lists the current time zone details
|
||||||
list-clipboard.ps1, lists the contents of the clipboard
|
list-clipboard.ps1, lists the contents of the clipboard
|
||||||
list-environment-variables.ps1, lists all environment variables
|
list-environment-variables.ps1, lists all environment variables
|
||||||
|
|
@ -104,8 +104,8 @@ Collection of PowerShell Scripts
|
|||||||
* [configure-git.ps1](Scripts/configure-git.ps1) - sets up the Git user configuration
|
* [configure-git.ps1](Scripts/configure-git.ps1) - sets up the Git user configuration
|
||||||
* [fetch-repo.ps1](Scripts/fetch-repo.ps1) - fetches a single Git repository at the current/given directory (including submodules)
|
* [fetch-repo.ps1](Scripts/fetch-repo.ps1) - fetches a single Git repository at the current/given directory (including submodules)
|
||||||
* [fetch-repos.ps1](Scripts/fetch-repos.ps1) - fetches all Git repositories under the current/given directory (including submodules)
|
* [fetch-repos.ps1](Scripts/fetch-repos.ps1) - fetches all Git repositories under the current/given directory (including submodules)
|
||||||
* [list-branches.ps1](Scripts/list-branches.ps1) - lists the branches of the current/given Git repository
|
* [list-branches.ps1](Scripts/list-branches.ps1) - lists the Git branches in the current/given repository
|
||||||
* [list-commits.ps1](Scripts/list-commits.ps1) - lists the commits of the current/given Git repository
|
* [list-commits.ps1](Scripts/list-commits.ps1) - lists the Git commits in the current/given repository
|
||||||
* [switch-branch.ps1](Scripts/switch-branch.ps1) - switches the current Git repository to the given branch (including submodules)
|
* [switch-branch.ps1](Scripts/switch-branch.ps1) - switches the current Git repository to the given branch (including submodules)
|
||||||
* [update-repos.ps1](Scripts/update-repos.ps1) - updates all Git repositories under the current/given directory (including submodules)
|
* [update-repos.ps1](Scripts/update-repos.ps1) - updates all Git repositories under the current/given directory (including submodules)
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#!/bin/powershell
|
#!/bin/powershell
|
||||||
<#
|
<#
|
||||||
.SYNTAX ./list-branches.ps1 [<repo-dir>] [<pattern>]
|
.SYNTAX ./list-branches.ps1 [<repo-dir>] [<pattern>]
|
||||||
.DESCRIPTION lists all branches in the current/given Git repository
|
.DESCRIPTION lists the Git branches in the current/given repository
|
||||||
.LINK https://github.com/fleschutz/PowerShell
|
.LINK https://github.com/fleschutz/PowerShell
|
||||||
.NOTES Author: Markus Fleschutz / License: CC0
|
.NOTES Author: Markus Fleschutz / License: CC0
|
||||||
#>
|
#>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#!/bin/powershell
|
#!/bin/powershell
|
||||||
<#
|
<#
|
||||||
.SYNTAX ./list-commits.ps1 [<repo-dir>] [<format>]
|
.SYNTAX ./list-commits.ps1 [<repo-dir>] [<format>]
|
||||||
.DESCRIPTION lists all commits in the current/given Git repository
|
.DESCRIPTION lists the Git commits in the current/given repository
|
||||||
.LINK https://github.com/fleschutz/PowerShell
|
.LINK https://github.com/fleschutz/PowerShell
|
||||||
.NOTES Author: Markus Fleschutz / License: CC0
|
.NOTES Author: Markus Fleschutz / License: CC0
|
||||||
#>
|
#>
|
||||||
|
Loading…
Reference in New Issue
Block a user