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 d284d75 commit e10bfc0Copy full SHA for e10bfc0
src/gitingest/utils/git_utils.py
@@ -111,7 +111,7 @@ async def ensure_git_installed() -> None:
111
f"due to long file paths:{Colors.END}",
112
)
113
print(f"{Colors.RED}To avoid this issue, consider enabling long path support with:{Colors.END}")
114
- print(f"{Colors.RED} git config --system core.longpaths true{Colors.END}")
+ print(f"{Colors.RED} git config --global core.longpaths true{Colors.END}")
115
print(f"{Colors.RED}Note: This command may require administrator privileges.{Colors.END}")
116
except RuntimeError:
117
# Ignore if checking 'core.longpaths' fails.
0 commit comments