I have a bunch of branches and I'm trying to setup git so the default display is in columns. That is, I want the default to be git branch --column
.
I tried defining an alias in my .gitconfig
file: bc = branch --column
but when I type git bc
in terminal, it instead creates a branch called --column
!! (sure was fun trying to get rid of that branch...)
I've also tried git branch --column=always
but that just displays things in column format for that one specific instance instead of setting it to the default display.
I've tried reading the documentation and searching online but haven't been able to find an answer.
git help branch
asked me to "See configuration variable column.branch for option syntax."- Google searching brought up this page on git-commands from tortoisegit.org but the section on
column.branch
says to look at the section oncolumn.ui
andcolumn.ui
just lists the available settings for outputting in columns.