How to use the simple-git/src/responses/ListLogSummary.COMMIT_BOUNDARY function in simple-git

To help you get started, we’ve selected a few simple-git examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github whatthefoo / ohshitgit / lib / git.js View on Github external
return new Promise((resolve, reject) => {
      git.raw(
        ["reflog", "--pretty=format:%gd;%gs" + ListLogSummary.COMMIT_BOUNDARY],
        (err, result) => {
          if (!err) {
            const reflogs = ListLogSummary.parse(result, ";", [
              "head",
              "message"
            ]);
            resolve(reflogs.all);
          }
          resolve([]);
        }
      );
    });
  },