diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-07-28 21:59:52 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-07-28 21:59:52 -0300 |
commit | 382065a2ce25101eabaaae34c37b07010e210248 (patch) | |
tree | 399620d744a19b77e2d18a933d7d3b47705b7306 /sup | |
parent | 3106b52eeb9cb8ded2497bf6611355b1f1bf4c87 (diff) | |
download | utils-git-382065a2ce25101eabaaae34c37b07010e210248.tar.gz utils-git-382065a2ce25101eabaaae34c37b07010e210248.tar.bz2 |
Fix: sup: use git add -f
Diffstat (limited to 'sup')
-rwxr-xr-x | sup | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |