You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# pdd --version0.23.1
# pdd --help | grep gitignore --skip-gitignore Don't look into .gitignore for excludes
The description makes me think that inspecting of .gitignore is enabled by default and this behavior can be disabled with the option. In fact, pdd disrespects my .gitignore and this option enables looking into .gitignore file.
Here is how I reproduced this:
# pdd -f pdd.xml -vFound 1 lines in /data/mystamps/.pddMy version is 0.23.1Ruby version is 2.7.8 at x86_64-linuxReading from root dir /data/mystampsExcluding src/test/wiremock/**/*.../data/mystamps/target/mystamps.war.original is a binary file (34117363 bytes)...
# pdd -f pdd.xml -v --skip-gitignoreFound 1 lines in /data/mystamps/.pddMy version is 0.23.1Ruby version is 2.7.8 at x86_64-linuxReading from root dir /data/mystampsExcluding src/test/wiremock/**/*Excluding target/...
# grep target .gitignoretarget/
The text was updated successfully, but these errors were encountered:
@php-coder you can introduce more clear description. The meaning of this option is skipping search for puzzles in files mentioned in .gitignore.
exclude is an additional parameter to skip some files, but in gitignore we typically place all paths with binaries.
The description makes me think that inspecting of
.gitignore
is enabled by default and this behavior can be disabled with the option. In fact, pdd disrespects my.gitignore
and this option enables looking into.gitignore
file.Here is how I reproduced this:
The text was updated successfully, but these errors were encountered: