Interact with remote repositories like you interact with git
All from the terminal!
You can install with cargo:
shell
cargo install gr-bin
Or faster, with cargo-binstall:
shell
cargo binstall gr-bin
gr
is similar to git
, that it looks at your current directory, and reads the information from git. To start, move to a local git repo, and login to the remote:
shell
cd /path/to/repo
gr login
Create pull request on current branch:
shell
gr pr create -m "PR title"
Get information about the open PRs:
shell
gr pr list
Merge the PR on the current branch:
shell
gr pr merge --delete
For more information, print the help with gr --help
.