-
Notifications
You must be signed in to change notification settings - Fork 31
fix: Existing Folder workflow reuses local repo instead of bare clone #527
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
Open
PureWeen
wants to merge
14
commits into
main
Choose a base branch
from
fix/existing-folder-reuse-local-repo
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
92390db
fix: Existing Folder workflow reuses local repo instead of bare clone
PureWeen 5bc7555
Address PR review: safety guards, scoped reuse, orphan cleanup
PureWeen 324d08f
fix: update PR #533 tests for skip-bare-clone approach
PureWeen 8cc6adb
fix: repo picker shows full repo name instead of last dash-segment (f…
PureWeen 8bb14c4
fix: migrate existing repo and group names to URL-derived format (iss…
PureWeen 5f731c6
fix: 'Existing Folder' no longer overwrites URL-based repo's bare clone
PureWeen 549bbc5
fix: validate bare clone before reuse to handle corrupt/partial direc…
PureWeen 1bbe2d0
fix: 'Existing Folder' creates separate repo when URL-based repo exists
PureWeen 0c58613
test: add coverage for local repo ID format, validation errors, and .…
PureWeen 702fbb9
fix: enable Add button immediately on keystroke (use oninput binding)
PureWeen 6ba25ad
fix: worktree creation fails with too-long-path on Windows for maui r…
PureWeen 671f1ad
fix: preserve user-renamed repo and group names across app restart
PureWeen e962882
fix: replace non-deterministic GetHashCode with SHA256 for persistent…
PureWeen 3ab93e9
fix: serialize concurrent worktree creation and validate reused workt…
PureWeen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
Oops, something went wrong.
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.
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.
Warning:
@bind:event="oninput"violates documented project guidelineThe project's
copilot-instructions.mdexplicitly states:This PR adds
@bind:event="oninput"on 3 inputs (lines 799, 820, 1101). While the UX goal (enabling the Add button immediately on keystroke) is valid, the implementation causes a Blazor → JS → C# → re-render round-trip on every keystroke, which is noticeable on mobile.Suggested alternative: Use a JS
oninputlistener that only updates a flag variable to enable/disable the button, without re-binding the full input value per keystroke.