Skip to content

Commit 79b37a7

Browse files
committed
add not implemented commands
1 parent 49dca7c commit 79b37a7

1 file changed

Lines changed: 48 additions & 0 deletions

File tree

extensions/git/src/commands.ts

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,54 @@ export class CommandCenter {
323323
await choice.run(this.model);
324324
}
325325

326+
@CommandCenter.Command('git.commitStaged')
327+
@CommandCenter.CatchErrors
328+
async commitStaged(): Promise<void> {
329+
await Promise.reject('not implemented');
330+
}
331+
332+
@CommandCenter.Command('git.commitStagedSigned')
333+
@CommandCenter.CatchErrors
334+
async commitStagedSigned(): Promise<void> {
335+
await Promise.reject('not implemented');
336+
}
337+
338+
@CommandCenter.Command('git.commitAll')
339+
@CommandCenter.CatchErrors
340+
async commitAll(): Promise<void> {
341+
await Promise.reject('not implemented');
342+
}
343+
344+
@CommandCenter.Command('git.commitAllSigned')
345+
@CommandCenter.CatchErrors
346+
async commitAllSigned(): Promise<void> {
347+
await Promise.reject('not implemented');
348+
}
349+
350+
@CommandCenter.Command('git.undoCommit')
351+
@CommandCenter.CatchErrors
352+
async undoCommit(): Promise<void> {
353+
await Promise.reject('not implemented');
354+
}
355+
356+
@CommandCenter.Command('git.pull')
357+
@CommandCenter.CatchErrors
358+
async pull(): Promise<void> {
359+
await Promise.reject('not implemented');
360+
}
361+
362+
@CommandCenter.Command('git.pullRebase')
363+
@CommandCenter.CatchErrors
364+
async pullRebase(): Promise<void> {
365+
await Promise.reject('not implemented');
366+
}
367+
368+
@CommandCenter.Command('git.pushTo')
369+
@CommandCenter.CatchErrors
370+
async pushTo(): Promise<void> {
371+
await Promise.reject('not implemented');
372+
}
373+
326374
@CommandCenter.Command('git.sync')
327375
@CommandCenter.CatchErrors
328376
async sync(): Promise<void> {

0 commit comments

Comments
 (0)