(note, ref, execaOptions)
| 315 | * @param {Object} [execaOpts] Options to pass to `execa`. |
| 316 | */ |
| 317 | export async function gitAddNote(note, ref, execaOptions) { |
| 318 | await execa("git", ["notes", "--ref", `${GIT_NOTE_REF}-${ref}`, "add", "-m", note, ref], execaOptions); |
| 319 | } |
| 320 | |
| 321 | /** |
| 322 | * Push all notes refs to the remote repository. |
no outgoing calls
searching dependent graphs…