git log
.
Like these tools, the DAG can be filtered.
git log --all
).
git log --all ^master
).
foo
or bar
, but not on fu
or
fubar
(similar to git log foo bar ^fu ^fubar
).
An optional path
parameter can be specified that will limit the
results to commits that affect that path. path
can either be a file
or a directory. If a directory is specified, commits are returned that
have modified any file in the directory tree rooted by path
. It is
important to note that if the path
parameter is specified, the commits
returned by this endpoint may no longer be a DAG, parent commits that
do not modify the path will be omitted from the response.
foo
or bar
, but not on master
that changed the file README.md.
foo
or bar
, but not on master
that changed to a file in any file in the directory src or its children.
Because the response could include a very large number of commits, it
is paginated. Follow the ‘next’ link in the response to navigate to the
next page of commits. As with other paginated resources, do not
construct your own links.
When the include and exclude parameters are more than can fit in a
query string, clients can use a x-www-form-urlencoded
POST instead.
Parameter | Description |
---|---|
Repo Slug | This can either be the repository slug or the UUID of the repository, surrounded by curly-braces, for example: {repository UUID} . |
Workspace Slug | This can either be the workspace ID (slug) or the workspace UUID surrounded by curly-braces, for example: {workspace UUID} . |