Skip to content

Commit 292bde4

Browse files
committed
squashme: document deposit commands
1 parent 6d66379 commit 292bde4

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

src/cli/cmd/dataset.rs

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,15 @@ pub enum DatasetCommand {
3636

3737
#[derive(Parser, Debug)]
3838
pub enum DepositCommand {
39-
#[command(name = "cp")]
39+
#[command(
40+
name = "copy",
41+
alias = "cp",
42+
about = "Copy and upload local files into the deposit"
43+
)]
4044
CopyFiles(deposit::CopyInput),
41-
#[command(name = "ls")]
45+
#[command(name = "list", about = "List all deposits")]
4246
ListDeposits(deposit::ListInput),
43-
#[command(name = "lsf")]
47+
#[command(name = "lsf", about = "List all files in a specific deposit")]
4448
ListFiles(deposit::ListFiles),
4549
}
4650

0 commit comments

Comments
 (0)