aboutsummaryrefslogtreecommitdiff
path: root/modules/git/git-shell-commands/init
blob: 603b81744ed68a46cb8f63c6c2b1676c060ade9c (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env sh

REPO="$1"

if [ ! -f "$REPO/config" ]; then 
  mkdir -p "$REPO"
  cd "$REPO"
  git init --bare --shared
fi