ev log

Usage

ev log [app:env] [flags]

Description

ev log lists all releases for the target app and environment in reverse chronological order. Each entry shows the release ID, timestamp, author, number of secrets, and the release message (if one was set with ev push -m).

rel_a1b2c3d4  2024-01-15 14:32:01  alice@example.com  "add STRIPE_KEY"       12 secrets
rel_9f8e7d6c  2024-01-14 09:11:44  bob@example.com    "initial push"         11 secrets
rel_5a4b3c2d  2024-01-13 16:05:22  alice@example.com  —                      10 secrets

Release IDs can be used with ev rollback — you only need enough characters to uniquely identify the release (a partial ID works).

Flags

FlagShortDescription
--limit N-n NShow only the N most recent releases (default: 20)

Examples

Show recent releases for the default app and environment:

ev log

Show the last 5 releases for a specific environment:

ev log staging -n 5

Show releases for a specific app and environment:

ev log backend:prod

On this page