Get diff between two tags with nodegit
问题 How do I get the diff between two tags using nodegit? On the command line, I can see the diff between two tags, no problemo. Additionally, I can use nodegit to list the tags in my repo: const Git = require('nodegit') const path = require('path') Git.Repository.open(path.resolve(__dirname, '.git')) .then((repo) => { console.log('Opened repo ...') Git.Tag.list(repo).then((array) => { console.log('Tags:') console.log(array) }) }) However, I am not sure how to find the diff between two tags in