github.com/pachyderm/pachyderm@v1.13.4/doc/docs/master/reference/pachctl/pachctl_list_commit.md (about) 1 ## pachctl list commit 2 3 Return all commits on a repo. 4 5 ### Synopsis 6 7 Return all commits on a repo. 8 9 ``` 10 pachctl list commit <repo>[@<branch>] [flags] 11 ``` 12 13 ### Examples 14 15 ``` 16 17 # return commits in repo "foo" 18 $ pachctl list commit foo 19 20 # return commits in repo "foo" on branch "master" 21 $ pachctl list commit foo@master 22 23 # return the last 20 commits in repo "foo" on branch "master" 24 $ pachctl list commit foo@master -n 20 25 26 # return commits in repo "foo" since commit XXX 27 $ pachctl list commit foo@master --from XXX 28 ``` 29 30 ### Options 31 32 ``` 33 -f, --from string list all commits since this commit 34 --full-timestamps Return absolute timestamps (as opposed to the default, relative timestamps). 35 -h, --help help for commit 36 -n, --number int list only this many commits; if set to zero, list all commits 37 --raw disable pretty printing, print raw json 38 ``` 39 40 ### Options inherited from parent commands 41 42 ``` 43 --no-color Turn off colors. 44 -v, --verbose Output verbose logs 45 ``` 46