/// A command-line tool for creating large scale changes in the Android tree. #[derive(Parser, Debug)] #[clap()] pubstruct Cli { #[clap(subcommand)] pub command: Commands,
/// Enable interactive mode, requiring user confirmation for each major step. #[clap(short, long, global = true)] pub interactive: bool,
/// Enable verbose output for debugging. #[clap(short, long, global = true)] pub verbose: bool,
}
#[derive(Subcommand, Debug)] pubenum Commands { /// Create new commits in dirty repositories and upload them.
Commit(CommitArgs), /// Upload previously created branches.
Upload(UploadArgs),
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.