diff --git a/src/commands/git/cherry-pick.ts b/src/commands/git/cherry-pick.ts index 8a4cf90..fdff604 100644 --- a/src/commands/git/cherry-pick.ts +++ b/src/commands/git/cherry-pick.ts @@ -214,7 +214,7 @@ export class CherryPickGitCommand extends QuickCommandBase { }, { label: `${this.title} & Edit`, - description: `-e ${ + description: `--edit ${ state.references!.length === 1 ? state.references![0].name : `${state.references!.length} commits` @@ -224,7 +224,7 @@ export class CherryPickGitCommand extends QuickCommandBase { ? `commit ${state.references![0].name}` : `${state.references!.length} commits` } onto ${destination.name}`, - item: ['-e'] + item: ['--edit'] } ] ); diff --git a/src/commands/git/fetch.ts b/src/commands/git/fetch.ts index c579748..ca7d897 100644 --- a/src/commands/git/fetch.ts +++ b/src/commands/git/fetch.ts @@ -126,7 +126,7 @@ export class FetchGitCommand extends QuickCommandBase { }, { label: `${this.title} All & Prune`, - description: '--all', + description: '--all --prune', detail: `Will fetch and prune all remotes of ${ state.repos.length === 1 ? state.repos[0].formattedName diff --git a/src/commands/git/push.ts b/src/commands/git/push.ts index 0653252..b9af39f 100644 --- a/src/commands/git/push.ts +++ b/src/commands/git/push.ts @@ -103,7 +103,7 @@ export class PushGitCommand extends QuickCommandBase { }, { label: `Force ${this.title}`, - description: '', + description: '--force', detail: `Will force push ${ state.repos.length === 1 ? state.repos[0].formattedName