(name: string, email: string)
| 42 | }; |
| 43 | |
| 44 | export const setIdentity = (name: string, email: string) => { |
| 45 | config('user.name', name); |
| 46 | config('user.email', email); |
| 47 | }; |
| 48 | |
| 49 | export const tag = (tag: string, message: string, options?: ExecSyncOptions) => { |
| 50 | runCommand(`git tag -a ${tag} -m '${message}'`, options); |