From 03faa18bfcacb93ef91dee9894eaa8002daf158e Mon Sep 17 00:00:00 2001 From: wiz Date: Sat, 12 Mar 2022 12:27:24 +0000 Subject: [PATCH] Set git to always rebase from install script --- production/install | 1 + 1 file changed, 1 insertion(+) diff --git a/production/install b/production/install index ad2eca9a4..f6794b134 100755 --- a/production/install +++ b/production/install @@ -819,6 +819,7 @@ osSudo "${ROOT_USER}" chown -R "${MEMPOOL_USER}:${MEMPOOL_GROUP}" "${MEMPOOL_HOM osSudo "${MEMPOOL_USER}" touch "${MEMPOOL_HOME}/.zshrc" echo "[*] Cloning Mempool repo from ${MEMPOOL_REPO_URL}" +osSudo "${MEMPOOL_USER}" git config --global pull.rebase true osSudo "${MEMPOOL_USER}" git config --global advice.detachedHead false osSudo "${MEMPOOL_USER}" git clone --branch "${MEMPOOL_REPO_BRANCH}" "${MEMPOOL_REPO_URL}" "${MEMPOOL_HOME}/${MEMPOOL_REPO_NAME}"