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

     1  ## pachctl flush commit
     2  
     3  Wait for all commits caused by the specified commits to finish and return them.
     4  
     5  ### Synopsis
     6  
     7  Wait for all commits caused by the specified commits to finish and return them.
     8  
     9  ```
    10  pachctl flush commit <repo>@<branch-or-commit> ... [flags]
    11  ```
    12  
    13  ### Examples
    14  
    15  ```
    16  
    17  # return commits caused by foo@XXX and bar@YYY
    18  $ pachctl flush commit foo@XXX bar@YYY
    19  
    20  # return commits caused by foo@XXX leading to repos bar and baz
    21  $ pachctl flush commit foo@XXX -r bar -r baz
    22  ```
    23  
    24  ### Options
    25  
    26  ```
    27        --full-timestamps   Return absolute timestamps (as opposed to the default, relative timestamps).
    28    -h, --help              help for commit
    29        --raw               disable pretty printing, print raw json
    30    -r, --repos []string    Wait only for commits leading to a specific set of repos (default [])
    31  ```
    32  
    33  ### Options inherited from parent commands
    34  
    35  ```
    36        --no-color   Turn off colors.
    37    -v, --verbose    Output verbose logs
    38  ```
    39