Conversation
Earlier, when Git for Windows still distributed the `gitweb` files, it made sense to exclude that explicitly from MinGit. But since c20f0d6 (Skip gitweb in Git for Windows, 2018-08-14), the GitWeb files are no longer distributed with Git for Windows, not even the full installer version thereof, read: They are _already_ excluded (and therefore do not need to be excluded _again_). Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
The `git-instaweb` command is meant to make it easy for Git users to stand up their own ad-hoc GitWeb instance easily. However, since c20f0d6 (Skip gitweb in Git for Windows, 2018-08-14), Git for Windows no longer includes GitWeb. Therefore it does not make sense to include `git-instaweb`, either. I noticed this omission while analyzing what parts of Git for Windows still require Perl, after `git svn` support was dropped, in git-for-windows/git#5393 (comment). So let's move the exclusion from the MinGit-only clause to the general exclusions. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
rimrul
approved these changes
Apr 14, 2026
Member
Author
|
Gah, I wanted to include this in -rc2. Oh well. |
Member
Author
|
/add relnote bug The The workflow run was started |
github-actions Bot
pushed a commit
that referenced
this pull request
Apr 14, 2026
The `git instaweb` command [is no longer distributed with Git for Windows](#689) because it would require GitWeb (which has not been distributed with Git for Windows for quite a few years). Signed-off-by: gitforwindowshelper[bot] <gitforwindowshelper-bot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
While analyzing Perl users, I noticed that
git instawebis included in Git for Windows, even if GitWeb (on which it relies) is not.Let's fix that.