github.com/pachyderm/pachyderm@v1.13.4/doc/docs/master/reference/pachctl/pachctl_subscribe_commit.md (about)

     1  ## pachctl subscribe commit
     2  
     3  Print commits as they are created (finished).
     4  
     5  ### Synopsis
     6  
     7  Print commits as they are created in the specified repo and branch.  By default, all existing commits on the specified branch are returned first.  A commit is only considered 'created' when it's been finished.
     8  
     9  ```
    10  pachctl subscribe commit <repo>@<branch> [flags]
    11  ```
    12  
    13  ### Examples
    14  
    15  ```
    16  
    17  # subscribe to commits in repo "test" on branch "master"
    18  $ pachctl subscribe commit test@master
    19  
    20  # subscribe to commits in repo "test" on branch "master", but only since commit XXX.
    21  $ pachctl subscribe commit test@master --from XXX
    22  
    23  # subscribe to commits in repo "test" on branch "master", but only for new commits created from now on.
    24  $ pachctl subscribe commit test@master --new
    25  ```
    26  
    27  ### Options
    28  
    29  ```
    30        --from string       subscribe to all commits since this commit
    31        --full-timestamps   Return absolute timestamps (as opposed to the default, relative timestamps).
    32    -h, --help              help for commit
    33        --new               subscribe to only new commits created from now on
    34        --pipeline string   subscribe to all commits created by this pipeline
    35        --raw               disable pretty printing, print raw json
    36  ```
    37  
    38  ### Options inherited from parent commands
    39  
    40  ```
    41        --no-color   Turn off colors.
    42    -v, --verbose    Output verbose logs
    43  ```
    44