-
Notifications
You must be signed in to change notification settings - Fork 230
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
Include fetched remote branches in git custom-completions #406
Comments
This commit adds remote branches (e.g. origin/main, github/feature-a etc.) to the output of the helper command `nu-complete git switchable branches`. Addresses nushell#406
This commit adds remote branches (e.g. origin/main, github/feature-a etc.) to the output of the helper command `nu-complete git switchable branches`. Addresses nushell#406
As long as this works as you describe above, i think we'll be cool. I just commented on the PR. |
This commit adds an extra completion command which includes remote branches with prefixes such as `origin/main`, `upstream/feature-a` etc. We need to differentiate which command accepts which completion. Addresses nushell#406
The different commands such as `git checkout`, `git switch`, `git cherry-pick` and `git rebase` all accept slightly differing refspecs. This commit separates the extraction of refspecs and combines them in individual completion commands for the different external commands. All git commands complete with a table of `value | description` now. Addresses nushell#406
The different commands such as `git checkout`, `git switch`, `git cherry-pick` and `git rebase` all accept slightly differing refspecs. This commit separates the extraction of refspecs and combines them in individual completion commands for the different external commands. All git commands complete with a table of `value | description` now. Addresses nushell#406
The different commands such as `git checkout`, `git switch`, `git cherry-pick` and `git rebase` all accept slightly differing refspecs. This commit separates the extraction of refspecs and combines them in individual completion commands for the different external commands. All git commands complete with a table of `value | description` now. Addresses #406 Co-authored-by: Simon Gasse <[email protected]>
Hello, I just noticed today that this has made my completions extremely slow on a large repository that I work on. At any given time, there are hundreds of remote branches.
Would it be okay if we adjusted this to respect an opt-out variable? The git bash completions have some variables to configure similar behavior, and I think something like that may work in this case. For example, a variable like |
sure, just put some comments around what you're changing so your changes aren't lost by the next person who wants to change them. |
Sorry for the delay on the performance work for large repos. I was tinkering with the script and discovered that this was a lot harder than I initially thought. I did however, find something that I think might be beneficial to others. While thinking through a solution, I was trying to concurrently run different tasks using
What came to mind recently however, was that I could create an array of closures and have
I have yet to test this out with live data, but I'm hopeful that this pattern can help in situations like these. I know Hack isn't a very popular language, but one thing that I do miss about it is the |
Often enough, I run something like
git rebase --onto origin/main 7fla28h
orgit switch origin/my_colleagues_feature
. For this, it would be helpful that the custom-completions for git included not only local branches but also the fetched branches from remotes.I tested it out and the PR would be a small change. Do you agree or is there another reason why remote branches are excluded? If they are always shown after the local branches, it should also not distract too much.
The text was updated successfully, but these errors were encountered: