-
-
Notifications
You must be signed in to change notification settings - Fork 669
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
git_status_summary extremely slow for large repos #172
Comments
The calculate of git_summary_status can be extremely expensive for large repos. This results in the shell becoming unresponsive. We now set a timeout of 0.2 seconds to make sure we always have a responsive shell. Fixes ohmybash#172
oh-my-zsh has a config item in git named |
@chaifeng, @ nntoan, @rpotter12 is anyone interested in merging this pull request? |
A slight adjustment to this, I'd like to be able to specify paths to exclude from git status, as some are mounted remotely and take a long time to run status. |
I think this issue is actually a duplicate of #6. @gdevenyi Thank you for the suggestion! It seems there is a related solution in oh-my-zsh at ohmyzsh/ohmyzsh#3009 (comment). I think we may utilize the settings for oh-my-zsh. Another solution is to use romkatv/gitstatus which extracts the git information in the background. akinomyoga/ble.sh also implements the background extraction of the git information. Or we may implement it by ourselves. |
The calculate of git_summary_status can be extremely expensive for large repos. This results in the shell becoming unresponsive. We now set a timeout of 0.2 seconds to make sure we always have a responsive shell. Fixes ohmybash#172
The calculate of git_summary_status can be extremely expensive for large repos. This results in the shell becoming unresponsive. We now set a timeout of 0.2 seconds to make sure we always have a responsive shell. Fixes ohmybash#172
The calculate of git_summary_status can be extremely expensive for large repos. This results in the shell becoming unresponsive. We now set a timeout of 0.2 seconds to make sure we always have a responsive shell. * lib/omb-prompt-base: Set a timeout on git commands * lib/omb-prompt-base: Fix timeout bug * lib/omb-prompt-base: Rename function "{run_with => _omb_prompt}_timeout" * lib/omb-prompt-base(_omb_prompt_timeout): Fix coding style * lib/omb-prompt-base(_omb_prompt_timeout): Check timeout commands on startup Fixes ohmybash#172 Co-authored-by: Koichi Murase <[email protected]>
Large repos can turn the command prompt unresponsive for long stretches of time.
This is due to the fact that the call to
git status --porcelain -b
can take a large amount of time:
This makes oh-my-bash unusable. The prompt should ideally not be delayed for more than 0.1s. See https://www.nngroup.com/articles/response-times-3-important-limits/
The text was updated successfully, but these errors were encountered: