Fix Git slowness incurred by using Boost as a submodule

Git became significantly slower for nearly all actions due to the inclusion of Boost as a submodule which in turn had an extremely large amount of submodules itself for every single Boost component, this especially effected clients like GitKraken which had multi-second delays in operations and became unusable due to it. The reason for this ended up being checking for modifications in the Boost submodule which has been disabled by using [`submodule.<name>.ignore`](https://git-scm.com/docs/git-config#Documentation/git-config.txt-submoduleltnamegtignore) which disables any checks on the Boost submodule for changes and fixes the prior performance degradation.
This commit is contained in:
PixelyIon 2021-10-18 20:29:03 +05:30
parent 1d532628cb
commit 595e53f7cf
1 changed files with 1 additions and 0 deletions

1
.gitmodules vendored
View File

@ -37,3 +37,4 @@
[submodule "app/libraries/boost"]
path = app/libraries/boost
url = https://github.com/boostorg/boost.git
ignore = all