gritty 2.2.3

A command line tool to manage your remote repositories on GitHub, GitLab and Gitea remotes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
all: clean build

NAME = "gritty"

clean:
	rm -rf target
build:
	cargo build --release
debug:
	cargo build
install:
	cp target/release/$(NAME) /usr/local/bin/$(NAME)