gitopen 1.4.1

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.
1
2
3
4
5
6
7
8
9
10
11
install:
	cargo build --release
	chmod +x ./target/release/gitopen
	cp ./target/release/gitopen /usr/local/bin/

test:
	cargo test --verbose

lint:
	cargo fmt -- --check
	cargo clippy --all-targets --all-features -- -D warnings