Please write an alias to .XXXrc (.bashrc, .zshrc, config.fish) if you want to use gitb <command> as git <command>.

Bash, Zsh

function git(){
  gitb "$@"
}

Fish

function git
  gitb $argv
end