Skip to content

Releases: Brooooooklyn/simple-git

v0.1.17

17 Jul 10:19
v0.1.17
f426ceb
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.1.16...v0.1.17

v0.1.16

30 Jan 07:50
v0.1.16
2d71cc9
Compare
Choose a tag to compare
0.1.16

v0.1.15

30 Jan 02:18
v0.1.15
388e408
Compare
Choose a tag to compare
0.1.15

v0.1.14

29 Jan 10:54
v0.1.14
b24be98
Compare
Choose a tag to compare
0.1.14

v0.1.13

29 Jan 10:41
v0.1.13
2daf6f6
Compare
Choose a tag to compare
0.1.13

v0.1.12

29 Jan 08:55
v0.1.12
d50bdce
Compare
Choose a tag to compare
0.1.12

v0.1.11

26 Jan 07:09
v0.1.11
1a9c7f3
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.1.10...v0.1.11

v0.1.10

24 Jan 05:20
v0.1.10
6018fab
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.1.9...v0.1.10

v0.1.9

16 Aug 06:54
v0.1.9
e95f28e
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.1.8...v0.1.9

v0.1.8

08 May 08:05
v0.1.8
9333c1e
Compare
Choose a tag to compare

What's Changed

import { Repository } from '@napi-rs/simple-git'

const repo = new Repository('.')
const head = repo.head()

const diff = repo.diffTreeToWorkdirWithIndex(head.peelToTree())

for (const delta of diff.deltas()) {
  console.log(delta.newFile().path())
}

// example.js
// src/lib.rs
// .github/workflows/CI.yml
// index.d.ts

Full Changelog: v0.1.7...v0.1.8