GitEasy

« All commands

Show-Releases Show the named releases recorded in the active project.

Read-Only GitEasy v1.5.3

Description

Show-Releases lists every release marker (annotated tag) in the active project, in newest-first order, with the version name, date, and note.

Recipes

Recipe 1
EXAMPLE 1
Show-Releases
Recipe 2
EXAMPLE 2
Show-Releases -Pattern 'v1.*'
Recipe 3
EXAMPLE 3
Show-Releases -Count 5

Notes

Returns structured objects you can pipe and filter. Each object has Repository, Version, Date, and Note.

Parameters

-Pattern optional String
Optional wildcard pattern to filter releases (for example, `v1.*` for the v1 line only). Uses Git's tag-pattern syntax.
-Count optional Int32
Maximum number of releases to return. Defaults to 100. Validated to the range 1-1000.

Was this page helpful? Report an issue or suggest an improvement →