aboutsummaryrefslogtreecommitdiff
path: root/bin/git-init.sh
blob: 6ca03e2a8e611c854689bc5e4552427b3517279a (plain)
  1. #!/bin/sh
  2. # FIXME: Run as user radicale in dir ~/collections/collection-root
  3. git init
  4. echo '.Radicale.cache' > .gitignore
  5. echo '.Radicale.lock' >> .gitignore
  6. echo '.Radicale.tmp-*' >> .gitignore
  7. git add '*.ics' '*.vcf' '*.props' .gitignore
  8. git commit -m "Initial snapshot."