Closed arl closed 5 years ago
handle-special-states
branch already detects correctly the rebase
state and shows rebase in progress
in tmux status bar, unit tests are implemented.
As soon as integration tests are implemented, I'll merge it as it is more important than showing bisect
or am
repository states
For bisecting
state, it's actually quite simple to detect and could be added easily. After issuing git bisect start
, 3 files are created under .git
:
.git
├── BISECT_LOG
├── BISECT_NAMES
├── BISECT_START
$ cat .git/BISECT_LOG
git bisect start # bisect commands issues for this bisect session
$ cat .git/BISECT_NAMES # ?
$ cat .git/BISECT_START
develop # sha1/branch/tag representing the bisection start
Detect those special working tree status and show it in the bar?