Identified an issue where we need git-commit to push to a specific feature branch instead of the base_branch. This adds an option to pass a different base_branch when committing changes.
This was influenced by the GH-495 PR by JorSanders. However, this makes it optional and configurable via a new property. I opted against using $CF_BRANCH because git-commit could be targeting a different repo. Which it is in our case, and the branch names may not align.
Identified an issue where we need
git-commit
to push to a specific feature branch instead of thebase_branch
. This adds an option to pass a differentbase_branch
when committing changes.This was influenced by the GH-495 PR by JorSanders. However, this makes it optional and configurable via a new property. I opted against using
$CF_BRANCH
becausegit-commit
could be targeting a different repo. Which it is in our case, and the branch names may not align.