From dd6c9db17204264ed1374d4b4772967af75ee2c7 Mon Sep 17 00:00:00 2001 From: Wang Shidong Date: Thu, 9 Sep 2021 20:55:44 +0800 Subject: [PATCH] Add -f flag (#4459) --- .ci/update_mirror.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.ci/update_mirror.sh b/.ci/update_mirror.sh index a3bc5798a..c7ed94075 100755 --- a/.ci/update_mirror.sh +++ b/.ci/update_mirror.sh @@ -7,19 +7,19 @@ usage () { push_gitee() { git remote add gitee https://SpaceVimBot:${BOTSECRET}@gitee.com/spacevim/SpaceVim.git - git push gitee master + git push gitee master -f } push_gitlab() { git remote add gitlab https://SpaceVimBot:${BOTSECRET}@gitlab.com/SpaceVim/SpaceVim.git - git push gitlab master + git push gitlab master -f } push_coding() { git remote add coding https://spacevim%40outlook.com:${CODINGBOTSECRET}@e.coding.net/spacevim/SpaceVim.git - git push coding master + git push coding master -f } main () {