addons/isl/src/operations/CommitBaseOperation.tsblame
View source
b69ab311/**
b69ab312 * Copyright (c) Meta Platforms, Inc. and affiliates.
b69ab313 *
b69ab314 * This source code is licensed under the MIT license found in the
b69ab315 * LICENSE file in the root directory of this source tree.
b69ab316 */
b69ab317
b69ab318import type {CommandArg, RepoRelativePath} from '../types';
b69ab319
b69ab3110import {Operation} from './Operation';
b69ab3111
b69ab3112export class CommitBaseOperation extends Operation {
b69ab3113 constructor(
b69ab3114 public message: string,
b69ab3115 protected filesPathsToCommit?: Array<RepoRelativePath>,
b69ab3116 ) {
b69ab3117 super(filesPathsToCommit ? 'CommitFileSubsetOperation' : 'CommitOperation');
b69ab3118 }
b69ab3119
b69ab3120 static opName = 'Commit';
b69ab3121
b69ab3122 getArgs() {
b69ab3123 const args: Array<CommandArg> = ['commit', '--addremove', '--message', this.message];
b69ab3124 if (this.filesPathsToCommit) {
b69ab3125 args.push(
b69ab3126 ...this.filesPathsToCommit.map(file =>
b69ab3127 // tag file arguments specially so the remote repo can convert them to the proper cwd-relative format.
b69ab3128 ({
b69ab3129 type: 'repo-relative-file' as const,
b69ab3130 path: file,
b69ab3131 }),
b69ab3132 ),
b69ab3133 );
b69ab3134 }
b69ab3135 return args;
b69ab3136 }
b69ab3137}