Skip to content

Commit 31c3f3f

Browse files
committed
feat: update articles
1 parent 53a1004 commit 31c3f3f

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International
22
Public License
3-
3+
44
By exercising the Licensed Rights (defined below), You accept and agree
55
to be bound by the terms and conditions of this Creative Commons
66
Attribution-NonCommercial-ShareAlike 4.0 International Public License

commit-all.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
for file in *; do
2+
[ -d "$file" ] || continue
3+
echo "cd $file";
4+
cd ./$file
5+
git add --all
6+
git commit -m "feat: update articles"
7+
git pull
8+
git push
9+
cd ..
10+
done

0 commit comments

Comments
 (0)