├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── index.d.ts ├── index.js ├── package.json └── test ├── git.test.js ├── git ├── add.diff ├── delta.diff ├── edit-ws.diff ├── edit.diff ├── mv.diff └── rm.diff ├── hg.diff ├── hg.js ├── hg.test.js ├── hg ├── add.diff ├── cp.diff ├── edit.diff ├── mv.diff └── rm.diff ├── large.diff ├── large.diff.html ├── perf-parse-diff.js ├── perf.js ├── pref-parser.html └── pref.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gitdiff-parser/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gitdiff-parser/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gitdiff-parser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gitdiff-parser/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gitdiff-parser/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gitdiff-parser/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gitdiff-parser/HEAD/package.json -------------------------------------------------------------------------------- /test/git.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gitdiff-parser/HEAD/test/git.test.js -------------------------------------------------------------------------------- /test/git/add.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gitdiff-parser/HEAD/test/git/add.diff -------------------------------------------------------------------------------- /test/git/delta.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gitdiff-parser/HEAD/test/git/delta.diff -------------------------------------------------------------------------------- /test/git/edit-ws.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gitdiff-parser/HEAD/test/git/edit-ws.diff -------------------------------------------------------------------------------- /test/git/edit.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gitdiff-parser/HEAD/test/git/edit.diff -------------------------------------------------------------------------------- /test/git/mv.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gitdiff-parser/HEAD/test/git/mv.diff -------------------------------------------------------------------------------- /test/git/rm.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gitdiff-parser/HEAD/test/git/rm.diff -------------------------------------------------------------------------------- /test/hg.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gitdiff-parser/HEAD/test/hg.diff -------------------------------------------------------------------------------- /test/hg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gitdiff-parser/HEAD/test/hg.js -------------------------------------------------------------------------------- /test/hg.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gitdiff-parser/HEAD/test/hg.test.js -------------------------------------------------------------------------------- /test/hg/add.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gitdiff-parser/HEAD/test/hg/add.diff -------------------------------------------------------------------------------- /test/hg/cp.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gitdiff-parser/HEAD/test/hg/cp.diff -------------------------------------------------------------------------------- /test/hg/edit.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gitdiff-parser/HEAD/test/hg/edit.diff -------------------------------------------------------------------------------- /test/hg/mv.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gitdiff-parser/HEAD/test/hg/mv.diff -------------------------------------------------------------------------------- /test/hg/rm.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gitdiff-parser/HEAD/test/hg/rm.diff -------------------------------------------------------------------------------- /test/large.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gitdiff-parser/HEAD/test/large.diff -------------------------------------------------------------------------------- /test/large.diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gitdiff-parser/HEAD/test/large.diff.html -------------------------------------------------------------------------------- /test/perf-parse-diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gitdiff-parser/HEAD/test/perf-parse-diff.js -------------------------------------------------------------------------------- /test/perf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gitdiff-parser/HEAD/test/perf.js -------------------------------------------------------------------------------- /test/pref-parser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gitdiff-parser/HEAD/test/pref-parser.html -------------------------------------------------------------------------------- /test/pref.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gitdiff-parser/HEAD/test/pref.html --------------------------------------------------------------------------------