LeetCodeSharp/commit.sh

12 lines
114 B
Bash
Raw Normal View History

2024-05-23 10:17:15 +08:00
#!/bin/sh
set -e
time=$(date "+%Y%m%d")
message="$time Finished"
git add -A
git commit -m "$message"
git push