git-sh icon indicating copy to clipboard operation
git-sh copied to clipboard

Accept aliasses of hub

Open lode opened this issue 12 years ago • 1 comments

I installed hub and aliased it with git and this seems to play fine with git-sh. Except that certain new commands don't work. For example:

  • fork
  • pull-request
  • create
  • browse
  • compare

Others do work, like help hub. Can the new hub commands also be passed on?

lode avatar Dec 11 '12 09:12 lode

Using the tip in https://github.com/rtomayko/git-sh/issues/20#issuecomment-14601858 I've added these lines to ~/.gitshrc:

alias fork='hub fork'
alias pull-request='hub pull-request'
alias create='hub create'
alias browse='hub browse'
alias compare='hub compare'

That works just fine. Except that auto completion doesn't join in.

lode avatar Mar 08 '13 06:03 lode