Download submodules at github.com

I host the project on github.com. There are several git submodules in my project.

You can clone a project with submodules with git clone --recursive , but since my audience is not developers, but people who have never heard of git, I wonder if there is a way to download the project using submodules?

+4
source share
1 answer

You can create a “download package” by downloading everything you want, along with submodules and providing a link to it.

Example:

https://github.com/frapi/frapi/downloads

You can go to the "Downloads" page of your repo, download such packages.

+2
source

Source: https://habr.com/ru/post/1397381/


All Articles