Open repo's github page from cli
Plop that git-hub
script in your path:
#!/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;
}
And then you'll be able to fire up the github page of the project from the command line:
$ git hub
<magic happens>
Written by Yanick Champoux
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Git
Authors
khasinski
591.1K
dmichaelavila
500.4K
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#