MCPcopy Index your code
hub / github.com/api3dao/airnode / commit

Function commit

docker/scripts/git.ts:23–25  ·  view source on GitHub ↗
(message: string, options?: ExecSyncOptions)

Source from the content-addressed store, hash-verified

21export const add = (options?: ExecSyncOptions) => runCommand('git add .', options);
22
23export const commit = (message: string, options?: ExecSyncOptions) => {
24 runCommand(`git commit --no-verify -m '${message}'`, options);
25};
26
27export const push = (branch: string, options?: ExecSyncOptions) => {
28 if (branch === 'master') {

Callers

nothing calls this directly

Calls 1

runCommandFunction · 0.90

Tested by

no test coverage detected