This folder contains submodules symlinked to various project repositories containing Dockerfiles and are categorised according to Authors.
At the moment, this folder is just a trial to see its effectiveness in day-to-day production Quality-of-Life uses.
The purpose/goal of this folder is to effectively manage redundancy and minimize repeated services as well as to
make it easier to reference
- To add git submodule links
- In the case whereby you need to re-add the git submodule, please add the '-f' flag to force the re-adding
git submodule add {-f} [git-repository-url]
- To initialize the git submodules
- This will clone and pull all contents of the repository into your project folder
git submodule init --recursive
- Update git submodules
- This will fetch all changes made to that submodule repository into your local copy
git submodule update
- Thanatisia (Me)