How to remove the fetch
autocomplete feature, but only after the colon (:), on git?
I mean, after I type
$ git fetch origin m<tab>
, it autocompletes to
$ git fetch origin master:master
, and I want to autocomplete to just
$ git fetch origin master
, without the 'colon part' (like the previous versions of git).
Most times I'm already on master - or whatever branch, and I don't want to merge the remote branch into my local branch like this.
Thanks!