git-mirror 0.14.0

Sync between different git repositories.
Documentation
1
2
3
4
5
6
7
8
9
FROM rust:stretch
WORKDIR /usr/src/git-mirror
COPY . .
RUN cargo install

FROM debian:stretch-backports
RUN apt-get update && apt-get install -t stretch-backports -y git-core && rm -rf /var/lib/apt/lists/*
WORKDIR /usr/local/bin
COPY --from=0 /usr/local/cargo/bin/git-mirror .