Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Sep 23, 2025

Note: This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Update Change
git-town/git-town major v14.2.3v22.4.0

Release Notes

git-town/git-town (git-town/git-town)

v22.4.0

Compare Source

New Features
  • sync now has a --gone flag to only sync (i.e. remove) branches that have already been shipped or deleted on the remote. This provides a low-risk way to clean up obsolete local branches without configuring branch types or touching anything active (#​5845).
  • ship can now ignore uncommitted changes via the new ignore-uncommitted configuration setting, making it easier to ship in messy working directories when you know what you're doing (#​5837).
  • propose --stack now supports skipping branches where proposal creation fails instead of aborting by running git town skip (#​5869).
  • config --redact now also obfuscates the configured user email in addition to other sensitive values (#​5850).
Bug Fixes
  • Improved handling of branches that exist across multiple Git remotes (#​5838).
  • propose --stack now skips branches where proposal creation failed but the proposal exists anyways (#​5865).
  • init now correctly persists connector types to the config file (#​5817).
  • sync --all now switches to a branch that is available in the worktree before deleting a shipped branch (#​5847).
Contributors

Shoutout to @​degauden, @​kevgo, @​meowsus, @​pcfreak30, @​stephenwade for contributing code, feedback, and ideas to 62 shipped pull requests and 7 resolved issues!

v22.3.0

Compare Source

New Features
  • All Git Town commands now also show the negated forms of CLI flags in their help output, making it clearer how to disable options (#​5814).
  • Added a new branch-prefix config setting that automatically prepends a prefix to branches created by Git Town (#​5677).
  • git town skip gained a --park flag to permanently skip this branch (#​5839).
  • git town config now supports a --redact flag that obfuscates sensitive configuration data like access tokens, making it safer to share configuration in bug reports (#​5831).
  • git town switch gained a --stash flag to explicitly disable stashing uncommitted changes (#​5778).
  • You can now configure which browser Git Town opens via the new browser config setting. Previously this was only configurable through the BROWSER environment variable (#​5818).
  • A JSON Schema for the Git Town config file is now published on schemastore.org, enabling validation and editor autocompletion (#​5703).
Bug Fixes
  • Git Town now retries backend Git commands that fail due to concurrent Git usage (for example when your IDE races the CLI) (#​5816).
  • The setup assistant no longer deletes advanced configuration when running a quick setup (#​5802).
  • The setup assistant now reliably writes all config values to the config file (#​5803).
  • git town sync now switches to a local branch available in the current worktree before deleting the current branch (#​5797).
  • git town sync avoids phantom merge conflicts by no longer syncing with tracking branches of ancestors if their local branch is unavailable in the current worktree (#​5791).
  • git town hack --beam now works correctly with worktrees and branches without an ancestor (#​5690).
  • git town sync --prune no longer crashes when the current branch has already been shipped at the remote (#​5704)
  • git town walk now skips branches that aren't available in the current worktree (#​5714).
  • git town propose now only opens proposals that are still active (#​5745).
  • The share-new-branches config setting now accepts a wider range of values (#​5719).
Contributors

Huge thanks to @​erik-rw, @​j2fw, @​james-harlyy, @​kevgo, @​lukeramsden, @​meowsus, @​ruudk, @​stephenwade, @​yaadata for contributing code, ideas, and feedback to 130 merged pull requests and 19 resolved issues!

v22.2.0

Compare Source

New Features
  • Git Town now supports a non-hidden config file, i.e. git-town.toml, in addition to the existing config file names (#​5614).
  • The new order configuration setting allows displaying lists of branches in reverse order, for example in switch, branch, up, down, and config. This is useful if you prefix your branches with the creation date like YYYYMM and want to see the newest branches on top (#​5615).
  • The new display-types configuration setting allows configuring which branch types Git Town shows in lists of branches. This affects the branch, switch, config, down, and up commands and all internal dialogs that ask to select a branch or parent branch (#​5659).
  • switch: you can now toggle to show all branches on and off using the a hotkey (#​5624).
  • setup assistant: now runs in the presence of invalid configuration data and overwrites it (#​5598).
  • Git Town now uses the Git user name also from the environment variables GIT_AUTHOR_EMAIL, GIT_COMMITTER_EMAIL, GIT_AUTHOR_NAME, and GIT_COMMITTER_NAME if they aren't set in Git metadata user.email and user.name (#​5668).
Bug Fixes
  • compress: works if a folder has the same name as a branch (#​5594).
  • ship: works if a folder has the same name as a branch (#​5657).
  • set-parent: only changes commits of feature or prototype branches (#​5605).
  • propose: correctly passes on a --body tag without content (#​5496).
  • propose: the gh connector no longer crashes if the user chooses Continue in browser (#​5681).
  • sync: pruning a freshly created branch no longer crashes (#​5660).
  • hack: now always sets the correct branch type (#​5609).
  • hack: --beam from a branch without parent now asks for the branch parent (#​5121).
  • init: no longer crashes if if there are no remotes (#​5608).
  • switch: can now combine --all and --display-types (#​5648).
  • dead links on the "Contributing" tab on GitHub are fixed (#​5679).
Contributors

Shoutout to @​AmitJoki, @​GamerGirlandCo, @​Varedis, @​caccavale, @​derekspelledcorrectly, @​j2fw, @​james-harlyy, @​kevgo, @​kevinmichaelchen, @​mrmarufpro, @​nebbles, @​ruudk, @​stephenwade, @​thattomperson, @​tranhl, @​tugrulates, @​yaadata for contributing code, feedback, ideas, and bug fixes to 58 shipped pull requests and 24 resolved issues!

v22.1.0

Compare Source

New Features
  • if you run a Git Town command while another is suspended, Git Town now offers the option to finish the suspended program and then run the new one (#​3337).
Bug Fixes
  • Fixes bugs resulting from the new Option serialization (#​5623).
Contributors

Shoutout to @​DPirate, @​IGassmann, @​Mause, @​derekspelledcorrectly, @​ethankeshishian, @​kevgo, @​stephenwade, @​yaadata, @​Shmookoff for contributing code, bug reports, and ideas to 24 shipped pull requests and 4 resolved issues!

v22.0.0

Compare Source

BREAKING CHANGES
  • Renamed the codeberg connector to forgejo since it supports all Forgejo-based forges. Codeberg itself runs on Forgejo (#​5447).
  • Start the setup assistant with git town init instead of git town config setup, matching Git's git init (#​5269).
  • git town hack no longer converts an existing branch into a feature branch. Use the new feature command instead (#​5516).
  • The contribute, feature, observe, park, and prototype commands no longer signal a problem when you run them on a branch that already has the desired type.
  • Removed the long-deprecated kill command. Use delete instead.
New Features
  • Added support for Azure DevOps (#​1657).
  • Introduced the push-branches setting to control whether Git Town pushes local changes to tracking branches automatically. Disable it if you prefer to push manually (#​5541).
  • Introduced the auto-sync setting to control whether hack, append, and prepend sync existing branches before creating a new one (#​5540).
  • set-parent: added the --none flag to create perennial branches programmatically.
Bug Fixes
  • Fixed git town branch in repos with a detached HEAD (#​5565).
Contributors

Shoutout to @​Phunky, @​alexus37, @​aximut, @​bb010g, @​benmosher, @​blaggacao, @​charlierudolph, @​derekspelledcorrectly, @​kevgo, @​kinyat, @​maruffahmed, @​oludaara, @​pradeepmurugesan, @​sheldonhull, @​stefanfrede, @​stephenwade, @​vectro, @​whitebear-gh, @​yaadata for contributiong code, feedback, and ideas to 78 shipped pull requests and 12 resolved issues!

v21.5.0

Compare Source

New Features
  • Added up and down commands to quickly move to the child or parent of the current branch (#​5432).

  • All configuration settings can now be provided via environment variables, in addition to the config file and Git metadata. This makes it easy to use custom scripts that provide configuration data (#​5446). For example, to load an API token from 1password CLI:

    GIT_TOWN_GITHUB_TOKEN=$(op read op://development/GitHub/credentials/personal_token) git town config
  • The hack, append, and prepend commands now support a stash flag and config option to leave staged changes as-is. Handy if you've carefully prepared an index you want to commit to a new branch (#​5429).

  • The setup assistant can now do a quick setup with only the essential settings (#​5484).

  • Added a new feature command to convert the given or current branch into a feature branch (#​5376).

  • The detached sync flag can now be permanently enabled through the new detached configuration setting (#​5452).

  • The auto-resolve flag can now be disabled with --no-auto-resolve (#​5458).

Bug Fixes
  • The setup assistant no longer stores a dev-remote when the user selects the default option (#​5492).
Contributors

Shoutout to @​fuadsaud, @​kevgo, @​stefanfrede, @​stephenwade, @​yaadata for contributing code, feedback, and ideas to 65 shipped PRs and 10 resolved issues!

v21.4.3

Compare Source

Bug Fixes
  • Fewer phantom merge conflicts: Git Town now performs a rebase-onto only if there are actual commits to remove. If there are no commits to remove, Git Town performs a regular rebase, or if there is no need to sync, no rebase at all. (#​5422)
  • "git town branch" prints branches in other worktrees de-emphasized (#​5405)
Contributors

Shoutout to @​AmitJoki, @​Ydot19, @​avaz, @​benmosher, @​kevgo, @​nebbles, @​nekitk, @​stephenwade, @​tranhl for contributing feedback, ideas, and code to 47 shipped PRs and 3 resolved issues!

v21.4.2

Compare Source

Bug Fixes
  • Git Town no longer mistakes legit file conflicts for phantom conflicts (#​5156, #​5140)
  • delete: Git Town now rebases onto the correct branch (#​5358)

v21.4.1

Compare Source

Bug Fixes
  • Fixes parsing of the new Git metadata config entries that disable auto-resolving phantom conflicts (#​5326).

v21.4.0

Compare Source

New Features
  • The setup assistant now correctly handles existing configuration settings in global Git metadata (#​5201)
  • When Git Town is unconfigured, it now runs the full setup assistant instead of just asking for the main branch (#​5057)
  • git town set-parent now presents the same hierarchical branch list as git town switch (#​5259)
  • When prompting for a parent branch, Git Town now also shows the hierarchical list from git town switch (#​5266)
  • Added a configuration option and CLI switch to disable automatic resolving of phantom merge conflicts for cases where manual conflict resolution is preferred (#​5317)
Bug Fixes
  • Phantom merge conflicts are now auto-resolved even when your stack is rooted in a perennial branch instead of the main branch (#​5193)
  • The glab connector now correctly updates merge proposal targets (#​5283)
  • Git Town now also removes branch type overrides when it deletes branches that were shipped at the remote (#​5274)
  • The setup assistant now cleans up local Git metadata when you opt to save configuration globally (#​5230)
Contributors

Shoutout to @​Ydot19, @​kevgo, @​thekarel for contributing code, ideas, and bug reports to 145 shipped PRs 5 resolved issues! 🚀

v21.3.0

Compare Source

New Features

setup assistant:

  • now creates configuration files with name git-town.toml instead of the deprecated git-branches.toml (#​5162)
  • now gives the user a chance to enter the observed regex and contribution regex, (#​5133, #​5132)
  • when entering perennial branches, the main and perennial branches from the config file are now preselected and locked (#​5154)
  • no longer asks for the dev remote if only one Git remote exists (#​5153)
  • now updates Git metadata only if the user entered a different value than already exists (#​5127)
  • no longer creates commented out entries (#​5110)
  • now explains how to run it manually (#​5155)
Bug Fixes
  • updating the base branch in a stack using the gh connector works now (#​5163)
  • setup assistant:
    • now displays the entered value for the API token scope (#​5144)
    • more consistent dialog captions (#​5159)
Contributors

Shoutout to @​kevgo, @​stephenwade, @​wengh for contributing code, ideas, and feedback to 52 shipped PRs and 1 resolved issue!

v21.2.0

Compare Source

New Features
  • Git Town can now use GitHub's gh CLI to talk to the GitHub API. No more messing with access tokens manually! (#​1639)
  • GitLab users get the same treatment: Git Town now integrates with the glab CLI to access the GitLab API (#​5079).
  • Dropped the dependency on which on Unix-like systems. One less external tool to worry about (#​5060).
  • Git Town is now in the official Arch Linux repositories. Install with pacman -S git-town (#​5015).
  • Git Town is now also available on OpenSUSE Stable and Tumbleweed.
  • The Setup Assistant now validates the forge information you enter works. If the connection fails, you get a chance to enter the credentials again. No more silent misconfigurations. (#​3030).
Bug Fixes
  • git town diff-parent now shows only the changes introduced by the current branch, even when it's behind its parent (#​5053).
  • The GitLab connector now handles the --title and --body arguments correctly (#​5072).
  • Continuing a suspended Git Town command that needs forge access now works correctly in all edge cases (#​5098).
  • All interactive dialogs now render properly in 80-character-wide terminals (#​5074).
  • The setup assistant now correctly pre-selects the token scope you previously configured (#​5046).
Contributors

Huge thanks to @​ChrisMM, @​JafethAriasH, @​alerque, @​alphatroya, @​ccoVeille, @​emmanuel-ferdman, @​haltcase, @​kastl-ars, @​kelbyers, @​kevgo, @​stephenwade, @​tranhl, @​vectro, @​znd4 for contributing ideas, feedback, code, and installer support to 86 shipped PRs and 9 resolved issues. Cheers!

v21.1.0

Compare Source

New Features
  • Git Town now keeps an immutable, append-only log of the repository state before and after each Git Town operation. This is a safety net in case git town undo cannot undo all changes. The new git town runlog command prints the log as well as its file path (#​4456).
Bug Fixes
  • Git Town now supports the situation where a file has the same name as a branch (#​5001).
  • Fixes a bug where git town sync sometimes doesn't push local changes (#​5007).
Contributors

Shoutout to @​AmitJoki, @​SmolPandaDev, @​kevgo, @​legeana, @​niklashigi, @​stephenwade, @​tobiaseisenschenk, @​towry, @​tranhl for contributing valuable code, feedback, and ideas to 19 shipped PRs and 6 resolved issues!

v21.0.0

Compare Source

BREAKING CHANGES
  • Configuration setting default-branch-type is now unknown-branch-type. This better reflects that this setting applies to branches without a known type, and helps differentiate it from new-branch-type. Existing configs continue to work indefinitely. Git-based configuration gets updated automatically, updating this in the config file is recommended (#​4964).
  • Updated branch name during merge. When merging two branches, Git Town now uses the parent branch for the name of the merged branch instead of the child branch. This keeps the pull request of the parent branch intact and generally aligns better with typical usage of this command (#​4938).
  • create.new-branch-type is now always respected. Previously, if this config option was set to feature, Git Town didn't apply it. Now it always assigns the configured branch type (#​4946).
New Features
  • New walk command: Execute a shell command on all branches in a stack or your workspace. Without a command it exits to the shell for each branch. Great for applying automated changes to all branches or debugging issues like which branch breaks a linter (#​4852).
  • Smarter syncing: git town sync now skips Git operations that wouldn't result in any changes. This speeds things up and avoids unnecessary Git noise (#​4927).
Bug Fixes
  • Beamed commits are now always removed from their original location after being moved (#​4895).
  • More reliable detection of the first commit in a branch, reducing edge case failures (#​4980)
  • git town branch no longer shows duplicate branches when multiple Git remotes are present (#​4961).
Contributors

Huge thanks to @​AmitJoki, @​WhosNickDoglio, @​jfmyers9, @​kevgo, @​mw00120, @​ruudk, @​stephenwade, @​zodman for moving Git Town forward by contributing code, feedback, and ideas to 52 shipped PRs and 13 resolved issues!

v20.2.0

Compare Source

New Features
  • git town sync now only executes the Git operations that are actually needed, i.e. skips Git operations that would do nothing (#​4913, #​4907, #​4902).
  • When shipping via the forge API, git town ship now pre-populates the commit message with the proposal title and description (#​2095).
  • Git Town now supports detecting copied files via the git config diff.renames copies setting (#​4878).
Bug Fixes
  • Detached mode no longer pulls updates from the local main branch into feature branches (#​4890).
  • Git Town no longer deletes details when updating pull requests on BitBucket Cloud (#​4900).
  • git town sync with the compress strategy no longer re-creates commits if there are no changes (#​4342).
  • git town sync now respects the --no-push setting when rebasing (#​4930).
  • Git Town no longer unstashes if the initial stash command was ineffectual (#​1003).
  • git town propose now always runs detached (#​4915).
  • git town sync now more reliably skips the editor (#​4911).
Contributors

Shoutout to @​AmitJoki, @​JCB-K, @​blaggacao, @​charlierudolph, @​erik-rw, @​fcurella, @​kevgo, @​legeana, @​mw00120, @​sheldonhull, @​stephenwade for contributing code, feedback, and ideas to 59 shipped PRs and 13 resolved issues!

v20.1.0

Compare Source

New Features
  • git town compress now has a --no-verify flag that disables Git's pre-commit hook (#​4843).
Bug Fixes
  • git town compress now enforces that the branch to compress is in sync with its parent branch (#​4845).
  • git town sync now doesn't remove commits of branches with deleted tracking branch if they don't have descendents (#​4872).
  • Git Town no longer overrides the language of executed Git commands to US-English (#​4861).
Contributors

Shoutout to @​AmitJoki, @​fcurella, @​haltcase, @​kevgo, @​lvlcn-t, @​mw00120, @​niklastreml, @​stephenwade for contributing code, feedback, and ideas to 34 shipped PRs and 6 resolved issues!

v20.0.0

Compare Source

Git Town 2000! 🎉

BREAKING CHANGES
  • The push-new-branches configuration option is now called share-new-branches and allows additional ways of sharing freshly created branches (#​3912):
    • no: keep new branches local (default)
    • push: push new branches to the development remote
    • propose: automatically create proposals for new branches. This helps being maximally transparent with progress on each item worked on.
  • git town propose now always syncs the proposed branch, but always in detached mode mode (#​4772, #​4781).
  • git town propose now longer has the --detached flag because it now always syncs in detached mode (#​4775).
New Features
Bug Fixes
  • Git Town now correctly resolves includeIf directives in Git configuration (#​4107).
  • git town prepend --beam now works correctly with prototype branches (#​4768).
  • Git Town now loads the forge API token with the same precendence as other configuration data (#​7428).
  • git town undo now correctly undoes situations where only the local part of a branch got renamed (#​4794).
  • Git Town now works even if Git's color.ui setting is always (#​4840).
  • The setup assistant now only updates the stored access token of the forge that is actually being used (#​4819).
  • git town status reset can now be run from a subdirectory (#​4812).
Contributors

Git Town 2000 is a big release. Shoutout to @​AmitJoki, @​Ydot19, @​ahgraber, @​davidolrik, @​erik-rw, @​haltcase, @​jmyers-figma, @​judec-ps, @​kevgo, @​lvlcn-t, @​nekitk, @​niklastreml, @​pradeepmurugesan, @​ruudk, @​stephenwade, @​terheyden, @​tharun208 for contributing code, feedback, and ideas to 124 shipped PRs and 17 resolved issues!

v19.0.0

Compare Source

BREAKING CHANGES
  • The commands new-pull-request and rename-branch are being sunset after being deprecated for a long time. Their modern replacements are propose and rename (#​4714).
  • The configuration entries contribution-branches, observed-branches, parked-branches, and prototype-branches are being sunset. Their functionality is taken over by setting the type for individual branches as well as contribution-regex, observed-regex, default-branch-type, and new-branch-type (#​4499).
New Features
  • git town append and git town hack now also have a --beam flag to move selected commits to the new branch. When enabled, they no longer fetch or sync, which allows you to move commits with the fewest possible distractions (#​3338).
  • The "select commits to beam" dialog now displays the SHA of commits in addition to the commit message (#​4519).
  • set-parent now allows providing the new parent as an optional positional CLI argument (documentation, #​4705).
  • The Git Town website now has a how-to section.
Bug Fixes
  • git town sync --no-push no longer make the commit order appear out of order (#​4696).
Contributors

Shoutout to @​erik-rw, @​kevgo, @​legeana, @​nekitk, @​pradeepmurugesan, @​ruudk, @​stephenwade, @​terheyden for contributing code, ideas, and feedback to 33 shipped PRs and 10 resolved issues!

v18.3.2

Compare Source

Bug Fixes
  • Restores the previous behavior of attempting an initial push when syncing tracking branches (#​4681).

v18.3.1

Compare Source

Bug Fixes
  • All git rebase commands now consistently use the --no-update-refs flag (#​4678).
Contributors

Shoutout to @​kevgo, @​ruudk for contributing feedback and code to 11 shipped PRs and 1 resolved issues!

v18.3.0

Compare Source

New Features
  • The new git town detach command removes a branch from its stack and makes it an independent top-level branch. This allows you to review and ship more of your branches concurrently, and focuses stacks on changes that belong together (#​4620).
  • The new git town swap command switches the position of the current branch with its parent, i.e. moves the current branch one position forward in the stack. This allows you to group related branches together, for example to ship them together or merge them.
  • git town merge no longer syncs branches on its own, and now requires all affected branches to be in sync. This separates merge conflicts arising from syncing from merge conflicts arising from merging. git town merge now effectively only deletes the parent branch (#​4655).
  • The help screen printed by Git Town commands now gives a usage example (#​4672).
Bug Fixes
  • git town set-parent no longer accidentally deletes commits of the branch in certain edge cases (#​4669).
  • git town set-parent no longer deletes conflicting files (#​4638).
  • git town merge now errors if the parent branch has more than one child (#​4658).
  • git town prepend --beam now prints the correct branch name in the picker dialog (#​4642).
  • git town compress now handles merge commits correctly (#​4563).
Contributors

Shoutout to @​FirelightFlagboy, @​avaz, @​charlierudolph, @​cjol, @​davidolrik, @​erik-rw, @​ianjsikes, @​kevgo, @​leonhfr, @​levrik, @​ruudk, @​stephenwade, @​tranhl for contributing ideas, feedback, and code to 55 shipped PRs and 10 resolved issues!

v18.2.0

Compare Source

New Features
  • Git Town now lets you submit staged changes into a new branch using a single command. The hack, append, and prepend commands now have a -c/--commit flag to commit the staged changes into the new branch. Use -m/--message to specify a commit message. The new --propose flag goes one step further and immediately proposes the new branch. Both --message and --propose imply --commit, so you can now run git hack bugfix --propose to commit your staged changes into a new bugfix branch and create a pull request for it in one step (#​4376).
  • git town sync now has a --prune flag that removes branches with no changes.
  • Git Town now works with repositories hosted on Codeberg.
Contributors

Shoutout to @​WhosNickDoglio, @​andrew-rosca, @​avaz, @​caccavale, @​charlierudolph, @​kevgo, @​lud-wj, @​ruudk, @​stefanfrede, @​stephenwade for contributing ideas, feedback, and code to 25 shipped PRs and 5 resolved issues!

v18.1.0

Compare Source

New Features
  • This release replaces the term "hosting platform" with forge because the latter is more correct and only one word. The configuration setting hosting.platform is now hosting.forge-type. This isn't a breaking change since the old settings still work. (#​4565, #​4568, #​4570)
Bug Fixes
Contributors

Shoutout to @​andrei9669, @​blarson-hearst, @​caccavale, @​kevgo, @​lud-wj for contributing ideas, feedback, and code to 24 shipped PRs and 4 resolved issues!

v18.0.0

Compare Source

BREAKING CHANGES
  • git town sync: Local changes in a prototype branch now get pushed if that branch has a tracking branch. git town sync doesn't create this tracking branch, you have to create it manually if this behavior is needed. Prototoype branches are used for active development, hence their local and tracking branch should remain in sync (#​4542).
Bug Fixes
Contributors

Shoutout to @​JaredSharplin, @​kevgo, @​stephenwade for contributing ideas, feedback, and code to 17 shipped PRs and 4 resolved issues!

v17.3.0

Compare Source

New Features
  • The new ff-only sync strategy provides a more elegant way to sync perennial branches that are protected against pushes and therefore should not receive local commits. Git Town fast-forwards the local branch to match the tracking branch. If a fast-forward is not possible, Git Town exits with a descriptive error message. This is ideal when you want an explicit warning about unpushed local commits (#​4104).
  • Git Town commands now uses the command listed in the BROWSER environment variable to open a browser. If no such environment variable exists, it opens the browser as before (#​4495).
  • git sync: syncs perennial, contribution, and observed branches without changes faster (#​4510, #​4513).
Bug Fixes
  • git sync: --stack now syncs observed branches correctly (#​4518).
Contributors

Shoutout to @​davidolrik, @​FirelightFlagboy, @​kevgo, @​legeana, @​sergej-koscejev, @​stephenwade, @​tugrulates, @​wayne-zhan, @​wlohrmann-hf for contributing ideas, feedback, and code to 56 shipped PRs and 10 reso


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/git-town-git-town-22.x branch from b9d5fa7 to aebd7f2 Compare October 14, 2025 02:02
@renovate renovate bot force-pushed the renovate/git-town-git-town-22.x branch from aebd7f2 to 5bde9d9 Compare October 31, 2025 22:06
@renovate renovate bot force-pushed the renovate/git-town-git-town-22.x branch from 5bde9d9 to 566dfb4 Compare December 14, 2025 02:55
@renovate renovate bot force-pushed the renovate/git-town-git-town-22.x branch from 566dfb4 to 01d56a4 Compare December 24, 2025 21:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant