Hello,
I'm trying to receive git diff results. Right now I'm just using this raw version
const rawDiff = await git.diff([
this.branch,
filePath
]);
And after this I'm parsing raw string to object.
Maybe there is some another, more proper way to receive this data using classes/objects?
Thank you!
Hello,
I'm trying to receive git diff results. Right now I'm just using this raw version
And after this I'm parsing raw string to object.
Maybe there is some another, more proper way to receive this data using classes/objects?
Thank you!