7 lines
172 B
Bash
Executable File
7 lines
172 B
Bash
Executable File
#!/bin/bash
|
|
cd /opt/wevads
|
|
git add .
|
|
git commit -m "Auto-commit 13/03 14:25" 2>/dev/null
|
|
git push origin main 2>/dev/null || echo "Push failed"
|
|
echo "Git auto-commit done"
|