We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1eeb8b commit d9520dcCopy full SHA for d9520dc
crates/but/src/args.rs
@@ -19,13 +19,15 @@ pub enum Subcommands {
19
/// Provides an overview of the Workspace commit graph.
20
Log,
21
/// Overview of the uncommitted changes in the repository.
22
+ #[clap(alias = "st")]
23
Status {
24
/// Determines whether the committed files should be shown as well.
25
#[clap(short = 'f', alias = "files", default_value_t = false)]
26
show_files: bool,
27
},
28
/// Overview of the uncommitted changes in the repository with files shown.
29
/// Equivalent to `but status --files`.
30
+ #[clap(hide = true)]
31
Stf,
32
33
/// Combines two entities together to perform an operation.
0 commit comments