We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e26f84 commit 5f5de2bCopy full SHA for 5f5de2b
1 file changed
extensions/git/src/commands.ts
@@ -381,7 +381,7 @@ export class CommandCenter {
381
@CommandCenter.CatchErrors
382
async checkout(): Promise<void> {
383
const config = workspace.getConfiguration('git');
384
- const checkoutType = config.get<string>('checkoutType');
+ const checkoutType = config.get<string>('checkoutType') || 'all';
385
const includeTags = checkoutType === 'all' || checkoutType === 'tags';
386
const includeRemotes = checkoutType === 'all' || checkoutType === 'remote';
387
0 commit comments