Thomas Sutton
Thomas Sutton
I've applied packunused to git-vogue itself in #84. Quite a nice tool, but I wonder about it's reliability and/or speed in a pre-commit hook. Either we assume that `dist/` contains...
Yeah, I expect this could be resolved by having `git-vogue` use the VCS' facilities to read files. I git we'll want to read from the index, not the file on...
@christian-marie Is it feasible to make "read the contents of file X" part of the VCS implementation? So plugins can call a library function or even just, e.g., `git-vogue read-file...
Nicer than the `Show` instance you mean? :-)
I think real support for move operations is probably going to require moving to a proper tree diff algorithm, but I'll add a cleanup phase to handled very simple moves...
@co-dh Can explain what you mean? Do you mean when generating a patch using the `diff` function? Or when applying a patch with the `patch` function?
You want results like this? ``` diff {"a":"hello", "b":"world"} {"a":null,"b":"world"} === [{"op":"remove", "path":"/a"}] diff {"a":null,"b":"world"} {"a":"hello","b":"world"} === [{"op":"add", "path":"/a", "value": "hello"}] diff {"a":null, "b":"world"} {"b":"world"} === [] ``` I'm focusing...
OK. I'll look at implementing this option for the next release.
Slightly improved in #22; needs some more changes in this direction.
bump