about summary refs log tree commit diff stats
path: root/modules/common/hooks/scripts/sync-git-repo.sh
blob: ad7368f37c250face0b22c5caa74510d8f384621 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env sh

task_data="$(task _get rc.data.location)"
[ "$task_data" ] || die "Taskwarrior should have a location set"

cd "$task_data" || die "(BUG?): Your data.location path is not accessable"

[ -d ./.git/ ] || git init

git add .
git commit --message="chore: Update" --no-gpg-sign

# vim: ft=sh