#git-repository #github #repository #git #pull-request #gitlab #web-page

app gitopen

Command line utility to open a git repository's web page from terminal, as well as pull requests in the browser after the first push

8 stable releases

1.4.1 Mar 29, 2024
1.4.0 May 25, 2023
1.3.3 Feb 19, 2023
1.3.1 Jul 12, 2022
1.1.1 Nov 29, 2021

#210 in Development tools

Download history 1/week @ 2024-02-20 8/week @ 2024-02-27 3/week @ 2024-03-12 108/week @ 2024-03-26 79/week @ 2024-04-02

190 downloads per month

Custom license

23KB
318 lines

example workflow name

Overview

A command line utility to open git repository page in the browser from the repository location in terminal.
Currently tested only on mac (prior to M1 chip).

Installation

Note: You have to have rust installed with cargo to be able to install this utility.

From Github (this repository)

  1. Clone the repo
  2. Run make install from the repo's directory

From crates.io with Cargo

  1. Run cargo install gitopen
    (From The Book: "All binaries installed with cargo install are stored in the installation root’s bin folder. If you installed Rust using rustup.rs and don’t have any custom configurations, this directory will be $HOME/.cargo/bin. Ensure that directory is in your $PATH to be able to run programs you’ve installed with cargo install.")

Usage

Basic usages:

  • When in git repository in terminal, run gitopen.
  • After you've opened a branch and you are ready to push and open a PR, run gitopen -p. This will push the changes to the current branch and open the PR in the browser. This can be done at any stage during the work on the PR, not just when you're making the first push.
  • You can open a specific commit. Use gitopen -c COMMIT where COMMIT is the commit SHA.
  • You can open a specific line number of a file. Use gitopen -l <PATH TO FILE>:<LINE NUMBER>(note that you have to use the : separator between the file path and the line number). Example:
> gitopen -l /src/main.rs:10
  • If you've added a remote (other than origin which is the default) e.g. for a forked repository so the remote is the original repository URL, you can use gitopen to open that remote by specifying its name, for example:
> gitopen -r upstream

Note that gitopen -r origin is the same as gitopen.

For help, use gitopen --help

Dependencies

~4–16MB
~201K SLoC