Coloque esse git-hub
script em seu caminho:
#!/usr/bin/env perl
use 5.10.0;
use Path::Tiny;
for( path('.git/config')->lines ) {
next unless m#url = git@github.com:(.*).git#;
my $url = "https://github.com/".$1;
say $url || 'no github remote found';
exec 'firefox' => $url;
}
E então você poderá abrir a página github do projeto a partir da linha de comando:
$ git hub
<magic happens>