PHP WebShell

Текущая директория: /opt/BitGoJS/node_modules/@lerna/diff/lib

Просмотр файла: get-last-commit.js

"use strict";

const log = require("npmlog");
const childProcess = require("@lerna/child-process");

module.exports.getLastCommit = getLastCommit;

/**
 * @param {import("@lerna/child-process").ExecOpts} execOpts
 */
function getLastCommit(execOpts) {
  if (hasTags(execOpts)) {
    log.silly("getLastTagInBranch");

    return childProcess.execSync("git", ["describe", "--tags", "--abbrev=0"], execOpts);
  }

  log.silly("getFirstCommit");
  return childProcess.execSync("git", ["rev-list", "--max-parents=0", "HEAD"], execOpts);
}

/**
 * @param {import("@lerna/child-process").ExecOpts} opts
 */
function hasTags(opts) {
  let result = false;

  try {
    result = !!childProcess.execSync("git", ["tag"], opts);
  } catch (err) {
    log.warn("ENOTAGS", "No git tags were reachable from this branch!");
    log.verbose("hasTags error", err);
  }

  log.verbose("hasTags", result);

  return result;
}

Выполнить команду


Для локальной разработки. Не используйте в интернете!