Is there a way to associate a note or something with a git branch? All of my git branch names are absolute garbage because I don't want to type much when switching. But now I have a zillion branches and don't know what they're for. I'd be willing to at least write a message when making a new branch (as a note to myself)

I put nice commit messages on branches, but I can't remember the larger context 😭

@tenderlove git does branch name completion, no? Or do I have something in my zshell config to enable that? It’s been this way for me so long I honestly cannot remember.

Anyhow, tab-to-trigger brand name completion doesn’t work for you? Or is insufficient?

@stevenharman completion isn't a problem. I don't want to have long branch names bc I have the branch name in my prompt. I want something more descriptive than a few words
@tenderlove I have a multi-line (2 lines) prompt with the branch, git status, Ruby version, etc… all on line 1, and my actual prompt on 2. So longer branch names don’t bother me. But I hear ya.
@stevenharman @tenderlove git notes can be attached to arbitrary refs. An underutilized feature IMO https://git-scm.com/docs/git-notes
Git - git-notes Documentation