ryanjon2040 / Unreal-Binary-Builder

An application designed to create installed Unreal Engine builds (aka Rocket builds) from Unreal Engine GitHub source.
MIT License
657 stars 150 forks source link

Are you going to add support for .gitdepsignore file in the future? #31

Open parthnaik92 opened 3 years ago

parthnaik92 commented 3 years ago

What the title says. You can add folders to the .gitdepsignore file to omit things that you do not want/need.

For example, I can create a .gitdepsignore file and add "/Engine/Documentation/**" so that it will not download anything in the Engine/Documentation folder when you run the Setup.bat file.

This functionality helps a lot when you want to reduce the download size, engine compile times(if some unnecessary plugin folders are added to the .gitdepsignore file), and the overall cost on disk. It would be awesome if it is possible to omit datasmith and other unnecessary stuff too.

parthnaik92 commented 3 years ago

More info on the .gitdepsignore file: https://github.com/EpicGames/UnrealEngine/pull/1687

ryanjon2040 commented 3 years ago

This looks interesting. I'll check it out when I come back.