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

     1  ## pachctl auth set
     2  
     3  Set the scope of access that 'username' has to 'repo'
     4  
     5  ### Synopsis
     6  
     7  Set the scope of access that 'username' has to 'repo'. For example, 'pachctl auth set github-alice none private-data' prevents "github-alice" from interacting with the "private-data" repo in any way (the default). Similarly, 'pachctl auth set github-alice reader private-data' would let "github-alice" read from "private-data" but not create commits (writer) or modify the repo's access permissions (owner). Currently all Pachyderm authentication uses GitHub OAuth, so 'username' must be a GitHub username
     8  
     9  ```
    10  pachctl auth set <username> (none|reader|writer|owner) <repo> [flags]
    11  ```
    12  
    13  ### Options
    14  
    15  ```
    16    -h, --help   help for set
    17  ```
    18  
    19  ### Options inherited from parent commands
    20  
    21  ```
    22        --no-color   Turn off colors.
    23    -v, --verbose    Output verbose logs
    24  ```
    25