Once a week we have integration meetings where we review code in branches not merged in to master. As a starting point we use this to list open branches
git branch -a --no-merged master
We name our branches after ticket numbers so it tough to see what we are really looking at. I get back
BUG_1231231
BUG_1412434
FEATURE_1231231
FEATURE_1232244
I know I can add and view descriptions by running
git branch --edit-description BUG_1231231
git config branch.BUG_1231231
The issue is these descriptions seemed to be stored in the config of my local repository. Can these descriptions be pushed to the remote?