(message: string)
| 28 | }; |
| 29 | |
| 30 | export const gitCommit = async (message: string): Promise<void> => { |
| 31 | await execa('git', ['commit', '-m', message]); |
| 32 | }; |
| 33 | |
| 34 | // Setup git remote |
| 35 | export const gitRemoteAdd = async (name: string): Promise<void> => { |