TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

How to Set Up Git Completion and Repo State on OS X

29 pointsby jrobertfoxabout 12 years ago

7 comments

aaronpkabout 12 years ago
Couple typos:<p>"In the git-completion.bash file" should be "In the .git-completion.bash file"<p>"In the git-prompt.sh file" should be "In the .git-prompt.sh file"<p>Updating the permissions is not necessary.<p>Step 4 should also include adding<p><pre><code> source ~/.git-completion.bash source ~/.git-prompt.sh </code></pre> Step 5 you can add "Run . ~/.bash_profile" or "close and re-launch your terminal"<p>Thanks for the tips!
peffabout 12 years ago
That prompt can be really slow, as it runs `__git_ps1` multiple times (through several branches of the conditional, and then for the final output). On my git.git repository, running `time __git_ps1` takes about .085s. If I hit the "cyan" condition in the prompt, we run it three times, and doing `time eval "echo \"$PS1"\""` takes about 0.263s, which feels noticeably laggy.<p>Changing it to cache the result, like this:<p><pre><code> export PS1=$LIGHT_GRAY"\u@\h"'$( g=$(__git_ps1 " (%s)") if [[ "$g" =~ \*\)$ ]] then echo "'$YELLOW'$g" elif [[ "$g" =~ \+\)$ ]] then echo "'$MAGENTA'$g" else echo "'$CYAN'$g" fi)'$BLUE" \w"$GREEN": " </code></pre> drops it back down to the .085s range.
hoovabout 12 years ago
I have a couple other suggestions:<p>1. Put your dotfiles in GitHub<p>2. Consider using zsh -- the completion is great, and it's easy to build a great prompt. I know prompts are personal taste, but I'm enjoying mine: <a href="https://github.com/hoov/dotfiles/blob/master/zsh/prompts/prompt_hoov_setup" rel="nofollow">https://github.com/hoov/dotfiles/blob/master/zsh/prompts/pro...</a>
sighlentabout 12 years ago
I'd also look at Mathias Bynens dotfiles repo.<p><a href="https://github.com/mathiasbynens/dotfiles" rel="nofollow">https://github.com/mathiasbynens/dotfiles</a>
heromatabout 12 years ago
Just use zsh with oh-my-zsh (<a href="https://github.com/robbyrussell/oh-my-zsh" rel="nofollow">https://github.com/robbyrussell/oh-my-zsh</a>). Done.
评论 #5785502 未加载
r4umabout 12 years ago
Additionally to GIT_PS1_SHOWDIRTYSTATE the following are useful<p><pre><code> export GIT_PS1_SHOWUPSTREAM="auto" export GIT_PS1_SHOWSTASHSTATE=1 export GIT_PS1_SHOWUNTRACKEDFILES=1</code></pre>
Osirisabout 12 years ago
fish shell has some of this built in, such as the git prompt.<p>Here's a sample of my fish_prompt.fish<p><pre><code> function fish_prompt set last_status $status set_color $fish_color_cwd printf '%s' (prompt_pwd) set_color normal printf '%s ' (__fish_git_prompt) set_color normal end</code></pre>