mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-01 22:38:16 +08:00
10 lines
209 B
TypeScript
10 lines
209 B
TypeScript
import * as Git from 'nodegit';
|
|
|
|
Git.Repository.discover("startPath", 1, "ceilingDirs").then((string) => {
|
|
// Use string
|
|
});
|
|
|
|
Git.Repository.init("path", true).then((repository) => {
|
|
// Use repository
|
|
});
|