sync-cleo 2026-04-10 18:04

This commit is contained in:
cleo
2026-04-10 18:04:21 +00:00
parent bb191c9cb8
commit cdbc52110c
Executable
+8
View File
@@ -0,0 +1,8 @@
#!/bin/bash
cd /root/.openclaw/workspace/obsidian-vault
git pull origin main >/dev/null 2>&1
if [ -n "$(git status --porcelain)" ]; then
git add -A
git commit -m "sync-cleo $(date '+%Y-%m-%d %H:%M')" >/dev/null 2>&1
git push origin main >/dev/null 2>&1
fi