From 518c37e4fd3d5c8b8d3de7751f8912fde74c2920 Mon Sep 17 00:00:00 2001 From: abelsiqueira Date: Wed, 15 May 2024 07:13:29 +0000 Subject: [PATCH] :robot: COPIERTemplate.jl update --- .copier-answers.yml | 2 +- docs/src/developer.md | 12 ------------ 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/.copier-answers.yml b/.copier-answers.yml index cf30ee68..49ef848a 100644 --- a/.copier-answers.yml +++ b/.copier-answers.yml @@ -10,5 +10,5 @@ PackageOwner: abelsiqueira PackageUUID: 5022dd56-1d41-4538-9f4c-b20739ff8283 RunJuliaNightlyOnCI: false UseCirrusCI: false -_commit: v0.2.2 +_commit: v0.2.5 _src_path: https://github.com/abelsiqueira/COPIERTemplate.jl diff --git a/docs/src/developer.md b/docs/src/developer.md index 37f9d2a9..3fc2939e 100644 --- a/docs/src/developer.md +++ b/docs/src/developer.md @@ -93,15 +93,3 @@ If this is the first time you work with this repository, follow the instructions ``` - Then you can open a pull request and work with the reviewer to address any issues. - -## Tips - -### Testing local changes - -To test you local modifications, you can run copier with the `--vcs-ref HEAD` flag and point to your local clone. This will use the latest changes, including uncommitted modifications (i.e., the dirty state). -What I normally do is this: - -```bash -cd $(mktemp -d) # Go to a tmp folder -copier copy --vcs-ref HEAD /path/to/clone/ pkg # Clone dirty clone into pkg -```