To ensure you don't commit any MDOQ specific files that shouldn't be in source control to source control
we recommend our gitignore template snippet should be added to your .gitignore
to ensure MDOQ files aren't accidentally added to source control.
You can configure MDOQ to automatically do this by adding
curl -s https://raw.githubusercontent.com/MDOQ-UK/Templates/main/gitignore/updater.php | php
To your post roll up actions script in the "FINAL STEP" part.
This would make your script look something like
... "$ARGUMENT_STEP_FINAL-$ARGUMENT_COMPARISON_AHEAD") set -xe # your code curl -s https://raw.githubusercontent.com/MDOQ-UK/Templates/main/gitignore/updater.php | php ;; "$ARGUMENT_STEP_FINAL-$ARGUMENT_COMPARISON_IDENTICAL") set -xe # your code curl -s https://raw.githubusercontent.com/MDOQ-UK/Templates/main/gitignore/updater.php | php ;; "$ARGUMENT_STEP_FINAL-$ARGUMENT_COMPARISON_BEHIND") set -xe # your code curl -s https://raw.githubusercontent.com/MDOQ-UK/Templates/main/gitignore/updater.php | php ;; ...