Reputation: 32996
I've seen numerous scripts to display the current branch but I'd like to replicate this exact set up (see right side of screenshot). Does anyone know how to make it possible?
Upvotes: 3
Views: 2957
Reputation: 520
Check out oh-my-zsh. It has different themes that can show the current git branch. You can view screenshots of many of the currently available themes here: themes
Upvotes: 3
Reputation: 143269
The closest I can think of is something like
git describe --all --dirty=' ±'
Maybe not exactly what you need, but maybe you can work from that.
Upvotes: 2