You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GRV is a terminal based interface for viewing Git repositories. It allows
refs, commits and diffs to be viewed, searched and filtered. The behaviour
and style can be customised through configuration. A query language can
be used to filter refs and commits, see the Documentation
section for more information.
GRV is available in homebrew and can be installed with:
brew install grv
FreeBSD
GRV can be installed as a binary package
pkg install grv
or from ports
cd /usr/ports/devel/grv && make install clean
Build instructions
Go version 1.8 or later is required. GRV depends on the following libraries:
libncursesw
libreadline
libcurl
cmake (to build libgit2)
Building GRV on OSX requires homebrew, and for readline, pkg-config, and cmake to be installed using homebrew:
brew install readline pkg-config cmake
To install GRV run:
go get -d github.com/rgburke/grv/cmd/grv
cd $GOPATH/src/github.com/rgburke/grv
make install
To install grv with an alternative binary name change the last step to:
make install BINARY=NewBinaryName
where NewBinaryName is the alternative name to use instead.
The steps above will install GRV to $GOPATH/bin. A static libgit2 will be built and
included in GRV when built this way. Alternatively if libgit2 version 0.27 is
installed on your system GRV can be built normally:
go install ./cmd/grv
About
GRV is a terminal interface for viewing git repositories