Skip to content
Snippets Groups Projects

feat: GitLens added to inspect student's executions history

Files

@@ -120,8 +120,8 @@ export default class GitMission {
return this.git.add('.');
}
commit(message: string, options?: string[]) {
return this.git.commit(message, options ?? []);
commit(message: string, options: string[] = []) {
return this.git.commit(message, options);
}
push() {
Loading