You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Place the.gitrc file to your home directory. Add the following code to your.bashrc or.profile file:
# uncomment this line if your startup script doesn't set color_prompt correctly# color_prompt=yesif [-f~/.gitrc ];then.~/.gitrcfi
Automatically updating remote
The remote changes can be automatically updated. This can be a time consuming operation, so a reasonable update interval shoud be chosen. The feature is disabled by default and it can be set by
# Set remote update interval in secondsgit config --local prompt.updateinterval 60# Or use a helper functiongitrc_refresh_timeout 60
To turn automatic remote update off
git config --local --unset prompt.updateinterval# Or use a helper functiongitrc_refresh_timeout off