(name: string, content: string)
| 17 | } |
| 18 | |
| 19 | async function stage(name: string, content: string) { |
| 20 | await memfs.promises.writeFile(`${DIR}/${name}`, content); |
| 21 | await git.add({ fs: memfs, dir: DIR, filepath: name }); |
| 22 | } |
| 23 | |
| 24 | async function readHead(): Promise<{ |
| 25 | author: { name: string; email: string }; |
no test coverage detected