remote 1.0.0

Generate remote repo URLs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
default: test

build:
	cargo build

run:
	cargo run -- github-ssh casey remote

test:
	cargo test

readme:
	echo '```' > README.md
	cargo run -- --help >> README.md
	echo '```' >> README.md