MCPcopy Create free account
hub / github.com/peter-evans/create-pull-request / status

Method status

src/git-command-manager.ts:317–324  ·  view source on GitHub ↗
(options?: string[])

Source from the content-addressed store, hash-verified

315 }
316
317 async status(options?: string[]): Promise<string> {
318 const args = ['status']
319 if (options) {
320 args.push(...options)
321 }
322 const output = await this.exec(args)
323 return output.stdout.trim()
324 }
325
326 async symbolicRef(ref: string, options?: string[]): Promise<string> {
327 const args = ['symbolic-ref', ref]

Callers 1

isDirtyMethod · 0.95

Calls 2

execMethod · 0.95
pushMethod · 0.80

Tested by

no test coverage detected