We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When Git-Web-Access is not hosted at root, GetGitDir return wrong path and fails with 400 error.
Say if it is hosted at "/git" instead of root, and repo name is 'test', GetGitDir return 'git/test.git' instead of 'test.git'.
This causes problem in ProcessRequest method in GitHandler.cs at line gitWorkingDir = Path.Combine(gitBaseDir, gitWorkingDir);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When Git-Web-Access is not hosted at root, GetGitDir return wrong path and fails with 400 error.
Say if it is hosted at "/git" instead of root, and repo name is 'test', GetGitDir return 'git/test.git' instead of 'test.git'.
This causes problem in ProcessRequest method in GitHandler.cs at line
gitWorkingDir = Path.Combine(gitBaseDir, gitWorkingDir);
The text was updated successfully, but these errors were encountered: