@0x-lerna-fork/check-working-tree 中文文档教程

发布于 5年前 浏览 23 项目主页 更新于 3年前

@0x-lerna-fork/check-working-tree

正确检查 git 工作树状态和错误

Usage

const checkWorkingTree = require("@0x-lerna-fork/check-working-tree");

// values listed here are their defaults
const options = {
  cwd: process.cwd(),
};

(async () => {
  try {
    await checkWorkingTree(options);
  } catch (err) {
    console.error(err.message);
    // "Working tree has uncommitted changes, ..."
  }
})();

安装 lerna 以访问 lerna CLI。

@0x-lerna-fork/check-working-tree

Check git working tree status and error appropriately

Usage

const checkWorkingTree = require("@0x-lerna-fork/check-working-tree");

// values listed here are their defaults
const options = {
  cwd: process.cwd(),
};

(async () => {
  try {
    await checkWorkingTree(options);
  } catch (err) {
    console.error(err.message);
    // "Working tree has uncommitted changes, ..."
  }
})();

Install lerna for access to the lerna CLI.

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文