Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor clarifications to global.conf page #2264

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 9 additions & 2 deletions reference/config_files/global_conf.rst
Expand Up @@ -8,7 +8,14 @@ global.conf
This new configuration mechanism is an **experimental** feature subject to breaking changes in future releases.


The **global.conf** file is located in the Conan user home directory.
By default, the **global.conf** file does not exist but may be created by the user in the Conan user home directory.
Conan expects the file to be a simple list of key-value settings, with one setting per line. E.g.:

.. code-block:: text

core:default_profile=default
tools.microsoft.msbuild:max_cpu_count=20
tools.files.download:retry=3

Global configuration
--------------------
Expand All @@ -25,7 +32,7 @@ Tools configurations
--------------------

Tools and user configurations allows them to be defined both in the *global.conf* file and in profile files. Profile values will
have priority over globally defined ones in *global.conf*, and can be defined as:
have priority over globally defined ones in *global.conf*, and can be defined in the profile as:

.. code-block:: text

Expand Down