#!/usr/bin/env sh set -eu if [ -f /host-git/.gitconfig ]; then cp /host-git/.gitconfig /root/.gitconfig chmod 644 /root/.gitconfig fi if [ -f /host-git/.git-credentials ]; then cp /host-git/.git-credentials /root/.git-credentials chmod 600 /root/.git-credentials fi exec "$@"