Implement the fix

This commit is contained in:
John Wesley Walker III 2024-04-23 16:46:32 +00:00
parent a7f790c38a
commit 92b9ac51a1
2 changed files with 4 additions and 0 deletions

View file

@ -178,6 +178,8 @@ class GitCommandManager {
async disableSparseCheckout(): Promise<void> {
await this.execGit(['sparse-checkout', 'disable'])
// Disabling 'sparse-checkout` leaves behind an undesirable side-effect in config (even in a pristine environment).
await this.tryConfigUnset('extensions.worktreeConfig', false)
}
async sparseCheckout(sparseCheckout: string[]): Promise<void> {