Lines Matching defs:git
53 $options->registerCommand('deletedFiles', 'Create the list of deleted files based on the git history.');
237 * Run git with the given arguments and return the output
243 protected function git(...$args)
246 $cmd = 'git ' . join(' ', $args);
253 throw new CliException('Running git failed');
283 if (!is_dir("$dir/.git")) {
285 $this->git('init');
349 * Generate a list of deleted files from git
355 if (!is_dir('.git')) throw new CliException('This extension seems not to be managed by git');
357 $output = $this->git('log', '--no-renames', '--pretty=format:', '--name-only', '--diff-filter=D');