You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A commit is considered to be in the comparison-branch but not in the base-branch if:
13
13
@@ -29,12 +29,16 @@ But the comparison isn't quite as strict, generally leading to a shorter list of
29
29
*`--exclude-label`: Exclude any commits from the list that come from a GitHub pull request with the given label. Multiple `--exclude-label` options may be provided, they will also be split by `,`. e.g. `--exclude-label=semver-major,meta`.
30
30
*`--require-label`: Only include commits in the list that come from a GitHub pull request with the given label. Multiple `--require-label` options may be provided, they will also be split by `,`. e.g. `--require-label=test,doc`.
31
31
*`--patch-only`: An alias for `--exclude-label=semver-major,semver-minor`.
32
-
*`--format`: Dictates what formatting the output will have. Possible options are: `simple`, `plaintext`, and `sha`. The default is to print markdown-formatted output; `plaintext` also implies that commits will be grouped.
32
+
*`--format`: Dictates what formatting the output will have. Possible options are: `simple`, `markdown`, `plaintext`, and `sha`. The default is to print a `simple` output suitable for stdout.
33
33
-`simple`: Don't print full markdown output, good for console printing without the additional fluff.
34
-
-`sha`: Print only the 10-character truncated commit shasums. Good for piping though additional tooling, such as `xargs git cherry-pick` for applying commits.
35
-
*`--simple` or `-s`: An alias for `--format=simple`.
34
+
-`sha`: Print only the 10-character truncated commit hashes. Good for piping though additional tooling, such as `xargs git cherry-pick` for applying commits.
35
+
-`plaintext`: A very simple form, without commit details, implies `--group`.
36
+
-`markdown`: A Markdown formatted from, with links and proper escaping.
37
+
*`--sha`: Same as `--format=sha`.
38
+
*`--plaintext`: Same as `--format=plaintext`.
39
+
*`--markdown`: Same as `--format=markdown`.
36
40
*`--filter-release`: Exclude Node-style release commits from the list. e.g. `Working on v1.0.0` or `2015-10-21 Version 2.0.0`.
37
-
*`--reverse`: Reverse the results, this is especially useful when piping output to `xargs`
41
+
*`--reverse`: Reverse the results, this is especially useful when piping output to `xargs`.
38
42
*`--commit-url`:A URL template which will be used to generate commit URLs for a repository not hosted in GitHub. `{ref}` is the placeholder that will be replaced with the commit, i.e. `--commit-url=https://gitlab.com/myUser/myRepo/commit/{ref}`. `{ghUser}` and `{ghRepo}` are available if they can be derived from package.json (Gitlab and Bitbucket URLs should be understood in package.json).
0 commit comments