Draft
Conversation
4f60200 to
2b60c09
Compare
This adds: - `opp alias` command to create, delete, list, and rename symbolic-ref aliases that point to PR branches (e.g., `opp alias myfeature 123`) - `opp checkout` command to switch to PR branches by number or alias, with interactive fzf selection when no argument is provided - Alias resolution in PR commands, so you can use aliases in place of PR numbers (e.g., `opp push myfeature`) - Alias display in `opp status` output - Automatic cleanup of aliases when PRs are merged Aliases work seamlessly with native git commands too: git checkout myfeature # works after creating alias Co-authored-by: Cursor <cursoragent@cursor.com>
2b60c09 to
2044fdb
Compare
Replace go-git plumbing usage with direct git commands: - symbolic-ref for creating/reading symbolic refs - show-ref for checking ref existence - update-ref for deleting refs - for-each-ref for listing refs This ensures compatibility with the upcoming go-git removal (pr/234). Co-authored-by: Cursor <cursoragent@cursor.com>
- ListAliases now uses a single git for-each-ref with %(symref) instead of running git symbolic-ref for every branch (was O(n) git commands) - fzf arguments with spaces are now properly quoted for shell execution - fzf now uses temp file + stdin preservation for proper TTY interaction Co-authored-by: Cursor <cursoragent@cursor.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.
opp aliascommand to create, delete, rename, and list PR aliasesopp checkoutcommand with fzf integration for quick branch switchingopp statusoutput