Skip to content

Commit 1dbfc78

Browse files
Populating changes
1 parent 8989d4f commit 1dbfc78

1 file changed

Lines changed: 19 additions & 4 deletions

File tree

  • content/en/docs/refguide10/version-control/version-control-troubleshooting

content/en/docs/refguide10/version-control/version-control-troubleshooting/_index.md

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,13 +111,28 @@ When filing a Git support issue with Mendix Support, attach the log files by doi
111111
The properties described below might contain personal information. We advise you to make sure that all the private information is removed before sharing them.
112112
{{% /alert %}}
113113

114-
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 apps folder:
114+
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.
115115

116-
`git status -b` — provides information on the current state of the repository
116+
#### General {#general-properties}
117117

118-
`git remote -v` — lists the remotes specified for the repository
118+
The following properties provide general information about the repository status and remotes.
119119

120-
`git config --list --show-origin --show-scope` — provides information on user's Git config
120+
* `git status -b` - Provides information on the current state of the repository.
121+
* `git remote -v` - Lists the remotes specified for the repository.
122+
123+
#### Configuration {#config-properties}
124+
125+
Git stores configuration at several levels:
126+
127+
* System - Affects the entire Git installation.
128+
* Global - Affects the current user.
129+
* Local - Affects a specific repository.
130+
131+
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:
132+
133+
`git config --list --show-origin --show-scope`
134+
135+
This command shows all active configuration values along with the file and scope they come from.
121136

122137
### Cannot Create Package from a Revision{#cannot-create-package}
123138

0 commit comments

Comments
 (0)