I'm looking to scratch an itch. At my company we use GitHub and name our development branches based on the corresponding GitHub issue for the repo.
Often times, I'll have several development branches, so when I do git branch, I see:
$ git branch
  10
  119
* 83
  92
$ 
Is there any tool/plug-in that can pull the issue title from GitHub and print it alongside the branch name? For example:
$ git branch
  10    Do some cool work
  119   Fix some bug
* 83    Invent more time
  92    Get it to brew coffee
 
     
    