Learn about Centmin Mod LEMP Stack today
Become a Member

cmupdate broken fix in 140.00beta01 & 141.00beta01

Discussion in 'Centmin Mod News' started by eva2000, May 20, 2026.

Thread Status:
Not open for further replies.
  1. eva2000

    eva2000 Administrator Staff Member

    59,297
    12,509
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +19,142
    Local Time:
    8:17 AM
    Nginx 1.31.x
    MariaDB 10.x/11.4+/12.3+
    Centmin Mod 140.00beta01 and 141.00beta01 branch folks might have run into an issue with running cmupdate due to me having to rebase some Git commits which break your local Centmin Mod Github version of the code. Below is the fix.

    First the issue if you run cmupdate command
    Code (Text):
    cmupdate
    No local changes to save
    remote: Enumerating objects: 101, done.
    remote: Counting objects: 100% (93/93), done.
    remote: Compressing objects: 100% (13/13), done.
    remote: Total 74 (delta 51), reused 74 (delta 51), pack-reused 0 (from 0)
    Unpacking objects: 100% (74/74), 12.80 KiB | 257.00 KiB/s, done.
    From https://github.com/centminmod/centminmod
     + 62aefe7...4cc083d 141.00beta01 -> origin/141.00beta01  (forced update)
    hint: Diverging branches can't be fast-forwarded, you need to either:
    hint:
    hint:   git merge --no-ff
    hint:
    hint: or:
    hint:
    hint:   git rebase
    hint:
    hint: Disable this message with "git config advice.diverging false"
    fatal: Not possible to fast-forward, aborting.
    No local changes to save
    hint: Diverging branches can't be fast-forwarded, you need to either:
    hint:
    hint:   git merge --no-ff
    hint:
    hint: or:
    hint:
    hint:   git rebase
    hint:
    hint: Disable this message with "git config advice.diverging false"
    fatal: Not possible to fast-forward, aborting.
    


    Quick Fix

    Do a fresh Centmin Mod code replacement by wiping /usr/local/src/centminmod.

    Replace branchname with branch you want either 140.00beta01 or 141.00beta01.

    140.00beta01 fresh setup
    Code (Text):
    branchname=140.00beta01
    cd /usr/local/src
    rm -rf centminmod*
    git clone -b ${branchname} --depth=1 https://github.com/centminmod/centminmod.git centminmod
    cd centminmod
    ./centmin.sh



    141.00beta01 fresh setup
    Code (Text):
    branchname=141.00beta01
    cd /usr/local/src
    rm -rf centminmod*
    git clone -b ${branchname} --depth=1 https://github.com/centminmod/centminmod.git centminmod
    cd centminmod
    ./centmin.sh
     
Thread Status:
Not open for further replies.