Sigurd Spieckermann

Results 258 comments of Sigurd Spieckermann
trafficstars

@pawamoy I think it addresses part of #240, but pre/post copy/update granularity is not addressed. There's #1511, but it seems stale. @lkubb @copier-org/maintainers A thought that originates from https://github.com/copier-org/copier/pull/1948#pullrequestreview-2578227878 (and...

You're right, I forgot about the availability of `_stage` now. :facepalm: Yes, this PR solves #240 then. :+1: (I've also replied to your comment above.)

Ah, you're right, @pawamoy. I got confused. :confused: But looking at https://copier.readthedocs.io/en/stable/updating/#how-the-update-works (and thinking about the detailed implementation), I think pre-/post-migrations are equivalent to pre-/post-update tasks for `copier update` –...

Interactive prompting is a little tricky because for `type: str`/`type: yaml` questions there is no clear distinction between no answer and an empty answer. Let's assume the following `copier.yml` file:...

Well, it's working except on Windows. I'll investigate tomorrow.

Now, Windows is happy, too. I missed the Windows-specific alternate object directory separator in the Git documentation (`;` for Windows, `:` for Unix): https://git-scm.com/docs/git#Documentation/git.txt-codeGITALTERNATEOBJECTDIRECTORIEScode This is ready for a critical...

I've rebased this PR onto the tip of `master` and factored out enhancing the `git` command with additional object directories into a separate function, as we need it more than...

I've added a test that involves updating a project with a separate Git directory. To make this test pass, I've replaced the manual construction of the Git objects directory path...

Oh, Windows isn't working – again. I'll check what to do about it.

It's working on Windows now, too. Git is sensitive to newline characters in the `.git/objects/info/alternates` file; it must be the `\n` character on both Linux/macOS and Windows, not `\r\n` on...