| 31 | * Git commit options for commit subnode |
| 32 | */ |
| 33 | export interface GitCommitOptions { |
| 34 | /** |
| 35 | * Absolute path to the app directory to commit. |
| 36 | */ |
| 37 | appPath?: string; |
| 38 | |
| 39 | /** |
| 40 | * Current iteration number (optional). |
| 41 | * If provided: generates iteration-based commit message |
| 42 | * If undefined: treats as initial commit |
| 43 | */ |
| 44 | iteration?: number; |
| 45 | } |
| 46 | |
| 47 | /** |
| 48 | * Git commit result from commit subnode |
nothing calls this directly
no outgoing calls
no test coverage detected