push-new-branches
By default, Git Town does not push new feature branches to the development remote since that would make creating branches slower and triggers an unnecessary CI run for a branch containing no changes. Running git town sync or git town propose later will push the branch to the dev remote. If you prefer to push new branches upon creation, enable this configuration option.
in config file
create.push-new-branches = true
or
create.push-new-branches = true
in Git metadata
To enable pushing new branches in Git, run this command:
git config [--global] push-new-branches <true|false>
The optional --global
flag applies this setting to all Git repositories on
your machine. Without it, this setting applies to the current Git repo.