MCPcopy Create free account
hub / github.com/6pac/SlickGrid / gitTag

Function gitTag

scripts/git-utils.mjs:39–42  ·  view source on GitHub ↗
(tag, { cwd, dryRun })

Source from the content-addressed store, hash-verified

37 * @returns {Promise<any>}
38 */
39export async function gitTag(tag, { cwd, dryRun }) {
40 const execArgs = ['tag', tag, '-m', tag];
41 return execAsyncPiped('git', execArgs, { cwd }, dryRun);
42}
43
44/**
45 * @param {String} tag - tag name

Callers 1

release.mjsFile · 0.90

Calls 1

execAsyncPipedFunction · 0.90

Tested by

no test coverage detected