-
Notifications
You must be signed in to change notification settings - Fork 19
docs: Add instructions for installing on Windows #91
New issue
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -42,6 +42,25 @@ Our goal is to contribute back to the developer community with tools that make v | |||||
| ```bash | ||||||
| brew install gittower/tap/git-flow-next | ||||||
| ``` | ||||||
| ### Manual Installation (Windows) | ||||||
|
|
||||||
| 1. Download the latest release from the [releases page](https://github.com/gittower/git-flow-next/releases) | ||||||
| 2. Extract the binary to a location in your PATH | ||||||
| 3. Change name of the binary to `git-flow.exe` | ||||||
|
||||||
| 3. Change name of the binary to `git-flow.exe` | |
| 3. Rename the binary to `git-flow.exe` |
Copilot
AI
Apr 6, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The ordered list continues as steps 4–6 under the separate “Verifying Installation” heading, which reads like a new section but renders as a continuation of the same list. Consider starting a new ordered list (restart at 1) or switching the verification steps to bullets so the structure is clearer.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The .exe.exe troubleshooting (steps 5-6 with code blocks) covers a rare edge case and adds a lot of visual weight. Consider simplifying to something like:
#### Verifying Installation
1. Open a terminal and run `git flow version`
2. If the command is not found, make sure the binary is named exactly `git-flow.exe` (Windows may hide file extensions).This also avoids the fenced-code-block-inside-list rendering issues (the current code blocks aren't indented, so they break list numbering on GitHub).
Copilot
AI
Apr 6, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
git: 'flow' is not a git command generally means Git cannot find a git-flow(.exe) executable on PATH (or in Git’s exec-path), not only that it was renamed incorrectly. It may be worth mentioning checking that the directory containing git-flow.exe is actually on PATH (and that the terminal session was restarted) in addition to the rename step.
Copilot
AI
Apr 6, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Both fenced blocks are showing console output rather than shell commands, but they’re marked as bash. Using an untyped fence or text would avoid misleading syntax highlighting (and the second block also starts with a blank line).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Having two "### Manual Installation" headings at the same level reads oddly. Consider moving the Windows section after the existing manual installation section (macOS/Linux is the more common target) and renaming the existing one to "### Manual Installation (macOS and Linux)" so both sections are clearly scoped.