• canpolat@programming.devOPM
      link
      fedilink
      English
      arrow-up
      16
      ·
      2 months ago

      I believe you can replace start with the command that is suitable for your system (e.g., xdg-open for linux).

  • Matt/D@programming.dev
    link
    fedilink
    English
    arrow-up
    4
    ·
    2 months ago

    This is how I was able to get ssh urls to work into something GitHub can open in the browser. Other sites may need more adjustments

    Also, open is the Mac command

    	browse = "!open $(git config remote.origin.url | sed \"s/:/\\//;s/git@/https:\\/\\//\")"
    
  • tyler@programming.dev
    link
    fedilink
    arrow-up
    4
    arrow-down
    1
    ·
    2 months ago

    not that it’s a better solution, but a different solution is that for github at least, the gh cli is fantastic and has commands for opening the repo both in the cli and the browser, and you can also open issues, prs, etc. I have gh prv aliased to open the current branch’s PR in the browser.

    ❯ gh alias list
    c: pr create -a @me -f
    ca: pr create -a @me -r myteam -f
    co: pr checkout
    prurl: pr view --json url -q ".url"
    prv: pr view -w