Add alipay payment qr-code.

This commit is contained in:
gnu4cn
2017-11-30 14:57:58 +08:00
parent b746f04506
commit 21c773b37b
2 changed files with 13 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

13
push.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
git add *
if [ "$1" = "" ]
then
echo "没有commit -m的输入请输入commit -m内容以[ENTER]结束:"
read msg
git commit -m "$msg"
git push
else
git commit -m "$1"
git push
fi