Is it possible to commit changes to another branch without checking it out?
Otherwise I always have to checkout my branch first and commit to it, which causes the deployment to run and revert everything to match the checked out branch.
Is there a command to commit directly into the branch e.g.
git commit --branch='my_target_branch' -m "commit description" -m "more details"