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
Git shell on windows shows file status as well with the branch info. We could easily add that by applying parsing to the git status call where we check for a dirty branch. For performance reasons we could keep it optional. If you dont get time to do that, I might in a little while.
The text was updated successfully, but these errors were encountered:
Do you happen to know if msysgit's prompt shows staged changes, unstaged changes, or both? If it only shows one, you could also parse the output of git diff --shortstat [--cached].
At least the git shell from the GitHub app shows both, like: [Makman2/colorama +0 ~1 -0]>
Where the first one is files added (aka unstaged changes), second files changed and last one files removed.
Git shell on windows shows file status as well with the branch info. We could easily add that by applying parsing to the git status call where we check for a dirty branch. For performance reasons we could keep it optional. If you dont get time to do that, I might in a little while.
The text was updated successfully, but these errors were encountered: