Introduction

gerrit-rust is a console client for gerrit written in rust. This is a rust learner project. Have patience with me :-)
I'm happy about every PR, but I will ask questions about changes to learn from your knowledge.

Dependency

Design

Some design considarations here.

gerrit demo server local on your host via docker

This creates a dockercontainer which is connectable via http://localhost:8080. The server is setup for development and all accounts can do all things. It generate or use a DOCKER-FOR-GERRIT folder with all settings, repositories and ssh-keys.

text docker run --rm -it -p 0.0.0.0:8080:8080 -p 127.0.0.1:29418:29418 \ -e AUTH_TYPE='OpenID' \ -e GERRIT_PUBLIC_KEYS_PATH='/home/gerrit/ssh-keys' \ -v ${PWD}/DOCKER-FOR-GERRIT/ssh-keys:/home/gerrit/ssh-keys \ -v ${PWD}/DOCKER-FOR-GERRIT/site:/home/gerrit/site \ --name gerrit docker.io/fabric8/gerrit:latest

Workflow

Random Notes

curl

With this we can handle the rest api ...

text curl -x GET 'http://localhost:8080/projects/?&b=master'

useful links

License

Licensed under either of

at your option.