From 4d92c1094a424ecfcbaa777ad01030d6fcca1a35 Mon Sep 17 00:00:00 2001 From: David Perez-Suarez Date: Tue, 18 Aug 2026 16:37:01 +0100 Subject: [PATCH 1/3] Updates current branch being used --- _docs/sysadmin/installation/update_submitty.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_docs/sysadmin/installation/update_submitty.md b/_docs/sysadmin/installation/update_submitty.md index b51c8fd8..45e316ae 100644 --- a/_docs/sysadmin/installation/update_submitty.md +++ b/_docs/sysadmin/installation/update_submitty.md @@ -22,8 +22,8 @@ Please also see [Update GNU/Linux Server](update_server) and [Installation Versi ``` cd /usr/local/submitty/GIT_CHECKOUT/Submitty - git checkout master - git pull origin master + git checkout main + git pull origin main ``` From 7b3e8cce629dbc4959bdfb684836ffcbc5c19e86 Mon Sep 17 00:00:00 2001 From: David Perez-Suarez Date: Tue, 18 Aug 2026 17:10:10 +0100 Subject: [PATCH 2/3] Adds an example to update from a particular release --- _docs/sysadmin/installation/update_submitty.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/_docs/sysadmin/installation/update_submitty.md b/_docs/sysadmin/installation/update_submitty.md index 45e316ae..bae55810 100644 --- a/_docs/sysadmin/installation/update_submitty.md +++ b/_docs/sysadmin/installation/update_submitty.md @@ -18,7 +18,7 @@ Please also see [Update GNU/Linux Server](update_server) and [Installation Versi ### Update Submitty Software to the latest Release 1. To update the Submitty source code repository, get the specific - branch/release to which you want to upgrade. For example: + branch/release to which you want to upgrade. For example, to update to the latest development version: ``` cd /usr/local/submitty/GIT_CHECKOUT/Submitty @@ -26,6 +26,12 @@ Please also see [Update GNU/Linux Server](update_server) and [Installation Versi git pull origin main ``` + Whereas to update to the latest release (changing `XX.yy.zz` for the right release tag): + ``` + git fetch origin --tags + git switch --detach vXX.yy.zz + ``` + 2. Then re-install the Submitty source code. From 658eae27c541d6243d3ebc0db072c74539c72189 Mon Sep 17 00:00:00 2001 From: David Perez-Suarez Date: Tue, 18 Aug 2026 17:10:38 +0100 Subject: [PATCH 3/3] Adds internal link to the note above --- _docs/sysadmin/installation/update_submitty.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_docs/sysadmin/installation/update_submitty.md b/_docs/sysadmin/installation/update_submitty.md index bae55810..e3c87b61 100644 --- a/_docs/sysadmin/installation/update_submitty.md +++ b/_docs/sysadmin/installation/update_submitty.md @@ -8,8 +8,8 @@ redirect_from: **IMPORTANT NOTE: If your system was initially installed prior to -early June 2018, please start with the section at the bottom of this -page.** +early June 2018, please start [with the section at the bottom of this +page](#installations-prior-to-early-june-2018).** Please also see [Update GNU/Linux Server](update_server) and [Installation Version Notes](version_notes).