centraldogma icon indicating copy to clipboard operation
centraldogma copied to clipboard

Fix history displays irrelevant changes

Open thachlp opened this issue 5 months ago • 4 comments

Motivate: The history of a directory includes changes in directories share the name. For instance: the history of /foo displays changes for /foo2, /foo3, /foobar ...

Modifications: Add a slash (/) before ** in the path (path + "/**"). The pattern foo/** matches /foo/anything, /foo/subdir/file, but it does not match anything that isn't a subpath of /foo.

Result Fixes https://github.com/line/centraldogma/issues/902

thachlp avatar Feb 24 '24 16:02 thachlp