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

Function gitTagPushRemote

scripts/git-utils.mjs:50–53  ·  view source on GitHub ↗
(tag, remote = 'origin', { cwd, dryRun })

Source from the content-addressed store, hash-verified

48 * @returns {Promise<any>}
49 */
50export async function gitTagPushRemote(tag, remote = 'origin', { cwd, dryRun }) {
51 const execArgs = ['push', remote, tag];
52 return execAsyncPiped('git', execArgs, { cwd }, dryRun);
53}
54
55/**
56 * @param {String} tag - tag name

Callers 1

release.mjsFile · 0.90

Calls 1

execAsyncPipedFunction · 0.90

Tested by

no test coverage detected