diff --git a/Scripts/Bash/Functions/Help/help_getOptions.sh b/Scripts/Bash/Functions/Help/help_getOptions.sh
index b2a73b5..ab26ed2 100755
--- a/Scripts/Bash/Functions/Help/help_getOptions.sh
+++ b/Scripts/Bash/Functions/Help/help_getOptions.sh
@@ -30,7 +30,7 @@ function help_getOptions {
     local ARGSS=""
 
     # Define long options we want to support.
-    local ARGSL="quiet,answer-yes,dont-commit-changes,read,search:,edit,update-output,update-structure,copy,delete,rename"
+    local ARGSL="quiet,answer-yes,read,search:,edit,update-output,update-structure,copy,delete,rename"
 
     # Parse arguments using getopt(1) command parser.
     cli_parseArguments
@@ -45,7 +45,6 @@ function help_getOptions {
 
             --quiet )
                 FLAG_QUIET="true"
-                FLAG_DONT_COMMIT_CHANGES="true"
                 shift 1
                 ;;
 
@@ -54,11 +53,6 @@ function help_getOptions {
                 shift 1
                 ;;
 
-            --dont-commit-changes )
-                FLAG_DONT_COMMIT_CHANGES="true"
-                shift 1
-                ;;
-
             --search )
                 ACTIONNAM="searchIndex"
                 FLAG_SEARCH="$2"