leetcode/commit.sh

12 lines
114 B
Bash
Raw Normal View History

2023-12-12 19:00:44 +08:00
#!/bin/sh
set -e
time=$(date "+%Y%m%d")
message="$time Finished"
git add -A
git commit -m "$message"
git push