From 8103d6fc75262eaa9a1fd00d13f91e1995e98b6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=92=B1=E5=B7=8D?= Date: Wed, 27 Sep 2023 17:47:33 +0800 Subject: [PATCH] feat:push.sh --- push.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 push.sh diff --git a/push.sh b/push.sh new file mode 100644 index 0000000..a9f0dff --- /dev/null +++ b/push.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +# 执行 git add . +echo "Executing 'git add .'" +git add . + +# 执行 git commit +echo "Executing 'git commit'" +git commit + +# 执行 git push +echo "Executing 'git push'" +git push +git push github + +# 完成 +echo "All steps completed!"