fetch tags when fetch-depth > 0. fix #1781

This commit is contained in:
Andrei Neculau 2025-01-14 19:48:35 +01:00 committed by GitHub
parent cbb722410c
commit 0776c3a4db
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -261,8 +261,12 @@ class GitCommandManager {
}
): Promise<void> {
const args = ['-c', 'protocol.version=2', 'fetch']
if (!refSpec.some(x => x === refHelper.tagsRefSpec) && !options.fetchTags) {
args.push('--no-tags')
if (options.fetchTags) {
args.push('--tags')
} else {
if (!refSpec.some(x => x === refHelper.tagsRefSpec)) {
args.push('--no-tags')
}
}
args.push('--prune', '--no-recurse-submodules')