git-diff-glob

0.3.2 • Public • Published

git-diff-glob

An easy way to get a diff using a file glob.

Usage

Require and call the function providing a file "glob", a substring of a file that you want the diff of. git-diff-glob will look for all files that include the given substring, and return a string of the diff for all matching files.

By default, matches will be made case-insensitively. This can be overwritten by providing an options argument { caseSensitive: true }

const gitDiffGlob = require('git-diff-glob')

let diff

// provide a string for a diff of all files matching 'READ'
// (e.g. README.md)
diff = gitDiffGlob('READ', { caseSensitive: true })

// or provide a space--deliminated string of multiple substrings
diff = gitDiffGlob('index html')

// or provide an array of substrings
diff = gitDiffGlob(['index', 'html'])

console.log(diff)

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.3.2
    0
    • latest

Version History

Package Sidebar

Install

npm i git-diff-glob

Weekly Downloads

0

Version

0.3.2

License

MIT

Last publish

Collaborators

  • slammayjammay