mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 02:28:34 +01:00
git: clean all command
This commit is contained in:
@@ -44,6 +44,9 @@ function clean(resource: SCMResource): void {
|
||||
log('clean', resource);
|
||||
}
|
||||
|
||||
function cleanAll(resourceGroup: SCMResourceGroup): void {
|
||||
log('clean all', resourceGroup);
|
||||
}
|
||||
|
||||
export function registerCommands(model: Model): Disposable {
|
||||
const disposables = [
|
||||
@@ -55,6 +58,7 @@ export function registerCommands(model: Model): Disposable {
|
||||
commands.registerCommand('git.unstage', unstage),
|
||||
commands.registerCommand('git.unstage-all', unstageAll),
|
||||
commands.registerCommand('git.clean', clean),
|
||||
commands.registerCommand('git.cleanAll', cleanAll),
|
||||
];
|
||||
|
||||
return Disposable.from(...disposables);
|
||||
|
||||
Reference in New Issue
Block a user