feat(Git Node): Add support for branches (#18870)

This commit is contained in:
Jon
2025-09-15 15:03:44 +01:00
committed by GitHub
parent 05e337be83
commit 752260784c
6 changed files with 796 additions and 1 deletions

View File

@@ -13,6 +13,15 @@ export const pushFields: INodeProperties[] = [
placeholder: 'Add option',
default: {},
options: [
{
displayName: 'Branch',
name: 'branch',
type: 'string',
default: '',
placeholder: 'main',
description:
'The branch to switch to before pushing. If empty or not set, will push current branch.',
},
{
displayName: 'Target Repository',
name: 'targetRepository',