grm 0.7.5

Manage multiple git repositories. You configure the git repositories in a file, the program does the rest!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM docker.io/debian:11.3

RUN apt-get update \
    && apt-get install -y --no-install-recommends \
        python3-pytest \
        python3-toml \
        python3-git \
        python3-yaml \
    && apt-get clean \
    && rm -rf /var/lib/apt/lists/*

WORKDIR /tests

ENTRYPOINT ["/bin/sh", "-c", "--"]