cli: remove author field from clap command

I'm not the only author, and it doesn't seem very useful to display
that information anyway (if it even appear anywhere).
This commit is contained in:
Martin von Zweigbergk 2023-07-06 01:38:12 -07:00 committed by Martin von Zweigbergk
parent 5b78fe75b1
commit c93cbbee50

View file

@ -2005,7 +2005,7 @@ pub fn short_operation_hash(operation_id: &OperationId) -> String {
/// ///
/// To get started, see the tutorial at https://github.com/martinvonz/jj/blob/main/docs/tutorial.md. /// To get started, see the tutorial at https://github.com/martinvonz/jj/blob/main/docs/tutorial.md.
#[derive(clap::Parser, Clone, Debug)] #[derive(clap::Parser, Clone, Debug)]
#[command(name = "jj", author = "Martin von Zweigbergk <martinvonz@google.com>")] #[command(name = "jj")]
pub struct Args { pub struct Args {
#[command(flatten)] #[command(flatten)]
pub global_args: GlobalArgs, pub global_args: GlobalArgs,