git ssb

0+

cel-desktop / ssb-pkg



Tree: e9d9dec1d00ff365112ca0f981bbda15e3682528

Files: e9d9dec1d00ff365112ca0f981bbda15e3682528 / test / test-79-npm / nodegit / nodegit.js

305 bytesRaw
1'use strict';
2
3var NodeGit = require('nodegit');
4var Diff = NodeGit.Diff;
5
6NodeGit.Repository.init('./', 0).then(function (repo) {
7 return Diff.indexToWorkdir(repo, null, {
8 flags: Diff.OPTION.INCLUDE_UNTRACKED | Diff.OPTION.RECURSE_UNTRACKED_DIRS
9 });
10}).then(function () {
11 console.log('ok');
12});
13

Built with git-ssb-web