feat(issue-77): handle multiple target branches

fix: https://github.com/kiegroup/git-backporting/issues/77

This enhancement allow users to backport the same change to multiple
branches with one single tool invocation
This commit is contained in:
Andrea Lamparelli 2023-08-01 12:09:02 +02:00
parent c19a56a9ad
commit 0098dd47e2
25 changed files with 1774 additions and 234 deletions

View file

@ -3,6 +3,10 @@
*/
export default interface LoggerService {
setContext(newContext: string): void;
clearContext(): void;
trace(message: string): void;
debug(message: string): void;