This is a repo meant to be used as a submodule for the Ironman map apps
Changes can be made in two ways
- Contribute to this repo directly
- Make changes to the repo while using it as a submodule
For the latter case, changes can be easily seen in a VSCode window
Workflow
- Get the latest code for the submodule (see below section)
- In the IronmonMapUtils directory run
git checkout main
- Make the necessary changes
- Commit and push
For repos that are using this code as a submodule, you can get the latest code at the same time you are pulling the latest from the parent repo.
For first time initialization run:
git submodule update --init --recursive
The command to update the IronmonMapUtils files to the latest from main
at the same time is:
git pull --recurse-submodules
To start using IronmonMapUtils as a submodule in a repo, run (in the folder you want this submodule to live)
git submodule add -b main https://github.com/kelseyyoung/IronmonMapUtils
git submodule init