Update list-branches.ps1 and list-commits.ps1

This commit is contained in:
Markus Fleschutz 2021-03-16 15:40:49 +01:00
parent 757694029c
commit 556beb2e9e
4 changed files with 6 additions and 6 deletions

View File

@ -44,8 +44,8 @@ inspect-exe.ps1, prints basic information of the given executable file
list-aliases.ps1, lists all PowerShell aliases
list-anagrams.ps1, lists all anagrams of the given word
list-automatic-variables.ps1, lists the automatic variables of PowerShell
list-branches.ps1, lists the Git branches in the current/given repository
list-commits.ps1, lists the Git commits in the current/given repository
list-branches.ps1, lists all branches in the current/given Git repository
list-commits.ps1, lists all commits in the current/given Git repository
list-current-timezone.ps1, lists the current time zone details
list-clipboard.ps1, lists the contents of the clipboard
list-drives.ps1, lists all drives

1 Script Description
44 list-aliases.ps1 lists all PowerShell aliases
45 list-anagrams.ps1 lists all anagrams of the given word
46 list-automatic-variables.ps1 lists the automatic variables of PowerShell
47 list-branches.ps1 lists the Git branches in the current/given repository lists all branches in the current/given Git repository
48 list-commits.ps1 lists the Git commits in the current/given repository lists all commits in the current/given Git repository
49 list-current-timezone.ps1 lists the current time zone details
50 list-clipboard.ps1 lists the contents of the clipboard
51 list-drives.ps1 lists all drives

View File

@ -107,8 +107,8 @@ Collection of PowerShell Scripts
* [configure-git.ps1](Scripts/configure-git.ps1) - sets up the Git user configuration
* [fetch-repo.ps1](Scripts/fetch-repo.ps1) - fetches updates for the current/given Git repository (including submodules)
* [fetch-repos.ps1](Scripts/fetch-repos.ps1) - fetches updates for all Git repositories under the current/given directory (including submodules)
* [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 Git commits in the current/given repository
* [list-branches.ps1](Scripts/list-branches.ps1) - lists all branches in the current/given Git repository
* [list-commits.ps1](Scripts/list-commits.ps1) - lists all commits in the current/given Git repository
* [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)

View File

@ -1,7 +1,7 @@
#!/bin/powershell
<#
.SYNTAX ./list-branches.ps1 [<repo-dir>] [<pattern>]
.DESCRIPTION lists the Git branches in the current/given repository
.DESCRIPTION lists all branches in the current/given Git repository
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>

View File

@ -1,7 +1,7 @@
#!/bin/powershell
<#
.SYNTAX ./list-commits.ps1 [<repo-dir>] [<format>]
.DESCRIPTION lists the Git commits in the current/given repository
.DESCRIPTION lists all commits in the current/given Git repository
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>