Last active
October 23, 2024 10:43
-
-
Save igrigorik/6666860 to your computer and use it in GitHub Desktop.
Open GitHub URL for current directory/repo...
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias gh="open \`git remote -v | grep [email protected] | grep fetch | head -1 | cut -f2 | cut -d' ' -f1 | sed -e's/:/\//' -e 's/git@/http:\/\//'\`" |
With the new gh cli tool just use:
gh repo view --web
even easier, gh browse
@drewbo worked for me on mac, thanks
Edit: Well, I don't actually want to use this, because when I source my .bash_profile
now, I get this as a result:
fatal: not a git repository (or any of the parent directories): .git
Quick and dirty if you already have the vim plugin rhubarb installed:
vim +GBrowse +q
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If using VS Code, one could also install the GitLens extension (good for other things too) and use the command palette (cmd + shift + P) > GitLens: Open Repository on Remote