#!/bin/sh

addgroup -S git 2>/dev/null
adduser -S -D -H -h /var/lib/git -s /bin/sh -G git -g git git 2>/dev/null
passwd -u git

exit 0
