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

Put git configuration core.longpaths=true in Windows documentation #3157

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion platform/windows/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,13 @@ To install the required Visual Studio components, open Visual Studio Installer a
Open `x64 Native Tools Command Prompt for VS 2022` and then clone the repository:

```cmd
git clone --recurse-submodules -j8 https://github.com/maplibre/maplibre-native.git
git clone --config core.longpaths=true --recurse-submodules -j8 https://github.com/maplibre/maplibre-native.git
cd maplibre-native
```

> [!NOTE]
> The `core.longpaths=true` config is necessary, because without it a lot of `Filename too long` messages will come. If you have this configuration set globally (`git config --system core.longpaths=true`), you can omit the `--config core.longpaths=true` portion of the clone command.

## Configuring

Configure the build with the following command:
Expand Down
Loading