Skip to content

Commit

Permalink
jj git push: short alias -N for --allow-new
Browse files Browse the repository at this point in the history
I commonly end up typing it. It's long and hard to complete
  • Loading branch information
ilyagr committed Nov 23, 2024
1 parent a5c96bc commit 2bde300
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/commands/git/push.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ pub struct GitPushArgs {
/// Allow pushing new bookmarks
///
/// Newly-created remote bookmarks will be tracked automatically.
#[arg(long, conflicts_with = "what")]
#[arg(long, short = 'N', conflicts_with = "what")]
allow_new: bool,
/// Allow pushing commits with empty descriptions
#[arg(long)]
Expand Down

0 comments on commit 2bde300

Please sign in to comment.