diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2025-02-04 21:45:24 +0100 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2025-02-04 21:47:29 +0100 |
commit | 5009f11cf3806e11b8162786d0ffae282f9c0256 (patch) | |
tree | f3a0bdaa31150d9bc37b029e60893e6afc6ff8af /README.md | |
parent | 1dcb2b58aa3afa6cd5be7c37f71cf42ab8545d24 (diff) |
Add explicit --since-upstream option to run command
Changelog: Add explicit `--since-upstream` option for the `run` command
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -61,6 +61,10 @@ To run jobs for commits that are in local `<branch>`, but not yet in its upstrea ``` minici run <branch> ``` +or: +``` +minici run --since-upstream=<branch> +``` For current branch, the name can be omitted: ``` @@ -76,3 +80,5 @@ To watch new tags and run jobs for each tag matching given pattern: ``` minici run --new-tags=<pattern> ``` + +The above options `--range`, `--since-upstream`, etc can be arbitrarily combined. |