Simple Git

· e22's blog

Git locally
#linux #podman

Only need a private Git for your own registry? Just run

    mkdir repo.git && cd repo.git
    git init —bare

in a folder on a server you have SSH access to and clone it on your local machine like

git clone user@server:/path/to/repo.git

e22@2022