From: Silvio Rhatto Date: Mon, 29 Jul 2024 00:59:52 +0000 (-0300) Subject: Fix: sup: use git add -f X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=382065a2ce25101eabaaae34c37b07010e210248;p=utils-git.git Fix: sup: use git add -f --- diff --git a/sup b/sup index b06f16f..3564418 100755 --- a/sup +++ b/sup @@ -79,5 +79,6 @@ else MESSAGE="Updates $BASE: $LOG" # Got upward and commit - ( cd .. &> /dev/null && $GIT add $BASE && $DIRNAME/commit "$MESSAGE" ) + #( cd .. &> /dev/null && $GIT add $BASE && $DIRNAME/commit "$MESSAGE" ) + ( cd .. &> /dev/null && $GIT add -f $BASE && $DIRNAME/commit "$MESSAGE" ) fi