We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af07050 commit 99fc196Copy full SHA for 99fc196
src/gitingest/utils/git_utils.py
@@ -105,7 +105,7 @@ async def ensure_git_installed() -> None:
105
f"due to long file paths:{Colors.END}",
106
)
107
print(f"{Colors.RED}To avoid this issue, consider enabling long path support with:{Colors.END}")
108
- print(f"{Colors.RED} git config --system core.longpaths true{Colors.END}")
+ print(f"{Colors.RED} git config --global core.longpaths true{Colors.END}")
109
print(f"{Colors.RED}Note: This command may require administrator privileges.{Colors.END}")
110
except RuntimeError:
111
# Ignore if checking 'core.longpaths' fails.
0 commit comments