7 lines
133 B
Bash
Executable File
7 lines
133 B
Bash
Executable File
#!/bin/bash
|
|
if [ -n "$(git status --porcelain)" ]; then
|
|
git add .
|
|
git commit -m "Auto-commit: Accepted AI change at $(date)"
|
|
fi
|
|
|