git-mirror 0.14.4

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

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