gitextract_6y16t5y0/ ├── .circleci/ │ └── config.yml ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── awesomebot.yml │ └── publish.yml ├── .gitignore ├── .gitmodules ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── appveyor.yml ├── diff-so-fancy ├── diff-so-fancy.plugin.zsh ├── docs/ │ └── diff-so-fancy.1 ├── hacking-and-testing.md ├── history.md ├── lib/ │ └── DiffHighlight.pm ├── package.json ├── pro-tips.md ├── report-bug.sh ├── reporting-bugs.md ├── test/ │ ├── bugs.bats │ ├── diff-so-fancy.bats │ ├── fixtures/ │ │ ├── add_empty_file.diff │ │ ├── add_remove_empty_lines.diff │ │ ├── ansi_reset_no_number.diff │ │ ├── binary-modified.diff │ │ ├── chromium-modaltoelement.diff │ │ ├── complex-hunks.diff │ │ ├── diff_recursive.diff │ │ ├── dotfiles.diff │ │ ├── file-moves.diff │ │ ├── file-perms.diff │ │ ├── file-rename.diff │ │ ├── file_copy.diff │ │ ├── file_with_space.diff │ │ ├── first-three-line.diff │ │ ├── hg.diff │ │ ├── hunk_no_comma.diff │ │ ├── latin1.diff │ │ ├── leading-dashes.diff │ │ ├── ls-function.diff │ │ ├── mnemonicprefix.diff │ │ ├── move_with_content_change.diff │ │ ├── noprefix.diff │ │ ├── recursive_default_as_mercurial.diff │ │ ├── recursive_longhand_as_mercurial.diff │ │ ├── remove_empty_file.diff │ │ ├── remove_slashn_eof.diff │ │ ├── single-line-remove.diff │ │ ├── truecolor.diff │ │ ├── unicode.diff │ │ └── weird.diff │ ├── git-config.bats │ ├── git_ansi_color.pl │ └── test_helper/ │ └── util.bash ├── third_party/ │ ├── ansi-reveal/ │ │ └── ansi-reveal.pl │ ├── build_fatpack/ │ │ └── build.pl │ ├── cli_bench/ │ │ └── cli_bench.pl │ └── term-colors/ │ └── term-colors.pl └── update-deps.sh