This commit is contained in:
Andrei Neculau
2025-12-03 11:56:13 +11:00
committed by GitHub
+6 -2
View File
@@ -285,8 +285,12 @@ class GitCommandManager {
} }
): Promise<void> { ): Promise<void> {
const args = ['-c', 'protocol.version=2', 'fetch'] const args = ['-c', 'protocol.version=2', 'fetch']
if (!refSpec.some(x => x === refHelper.tagsRefSpec) && !options.fetchTags) { if (options.fetchTags) {
args.push('--no-tags') args.push('--tags')
} else {
if (!refSpec.some(x => x === refHelper.tagsRefSpec)) {
args.push('--no-tags')
}
} }
args.push('--prune', '--no-recurse-submodules') args.push('--prune', '--no-recurse-submodules')