From 6bfb84597ebceabf60d3215b268d0aeb68262f26 Mon Sep 17 00:00:00 2001 From: Tom Date: Wed, 4 Feb 2026 10:47:12 +0100 Subject: [PATCH 1/2] Clarified Git config levels Added additional details about Git configuration levels and clarified command usage for troubleshooting. --- .../version-control-troubleshooting/_index.md | 20 +++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/content/en/docs/refguide/version-control/version-control-troubleshooting/_index.md b/content/en/docs/refguide/version-control/version-control-troubleshooting/_index.md index 65545de4ddb..dec4c805dde 100644 --- a/content/en/docs/refguide/version-control/version-control-troubleshooting/_index.md +++ b/content/en/docs/refguide/version-control/version-control-troubleshooting/_index.md @@ -109,13 +109,29 @@ When filing a Git support issue with Mendix Support, attach the log files by doi The properties described below might contain personal information. We advise you to make sure that all the private information is removed before sharing them. {{% /alert %}} -There are properties of the Git repository that provide you with information useful for troubleshooting different issues. Execute the following using the command line in the app’s folder: +There are properties of the Git repository that provide you with information useful for troubleshooting different issues. Execute the following using the command line in the app’s folder. + +#### General `git status -b` — provides information on the current state of the repository `git remote -v` — lists the remotes specified for the repository -`git config --list --show-origin --show-scope` — provides information on user's Git config +#### Configuration + +Git stores configuration at several levels: + +* System: affects the entire Git installation +* Global: affects the current user +* Local: affects a specific repository + +More specific configuration overrides more generic configuration (for example, local overrides global). + +You can inspect the full effective configuration and see where each value is defined using: + +`git config --list --show-origin --show-scope` + +This command shows all active configuration values along with the file and scope they come from. ### Cannot Create Package from a Revision{#cannot-create-package} From 8c8bbdb72e1460afb9de444d58bf0d608574cf7d Mon Sep 17 00:00:00 2001 From: katarzyna-koltun-mx <108737161+katarzyna-koltun-mx@users.noreply.github.com> Date: Wed, 4 Feb 2026 13:57:13 +0100 Subject: [PATCH 2/2] Update _index.md --- .../version-control-troubleshooting/_index.md | 21 +++++++++---------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/content/en/docs/refguide/version-control/version-control-troubleshooting/_index.md b/content/en/docs/refguide/version-control/version-control-troubleshooting/_index.md index dec4c805dde..897256977f5 100644 --- a/content/en/docs/refguide/version-control/version-control-troubleshooting/_index.md +++ b/content/en/docs/refguide/version-control/version-control-troubleshooting/_index.md @@ -109,25 +109,24 @@ When filing a Git support issue with Mendix Support, attach the log files by doi The properties described below might contain personal information. We advise you to make sure that all the private information is removed before sharing them. {{% /alert %}} -There are properties of the Git repository that provide you with information useful for troubleshooting different issues. Execute the following using the command line in the app’s folder. +Several properties of the Git repository can provide you with information useful for troubleshooting different [general](#general-properties) and [configuration](#config-properties) issues. You can view them by executing the commands from the command line in the app's folder. -#### General +#### General {#general-properties} -`git status -b` — provides information on the current state of the repository +The following properties provide general information about the repository status and remotes. -`git remote -v` — lists the remotes specified for the repository +* `git status -b` - Provides information on the current state of the repository. +* `git remote -v` - Lists the remotes specified for the repository. -#### Configuration +#### Configuration {#config-properties} Git stores configuration at several levels: -* System: affects the entire Git installation -* Global: affects the current user -* Local: affects a specific repository +* System - Affects the entire Git installation. +* Global - Affects the current user. +* Local - Affects a specific repository. -More specific configuration overrides more generic configuration (for example, local overrides global). - -You can inspect the full effective configuration and see where each value is defined using: +More specific configuration overrides more generic configuration (for example, local overrides global). You can inspect the configuration and see where each value is defined by using the following command: `git config --list --show-origin --show-scope`