• 0 Posts
  • 2 Comments
Joined 11 months ago
cake
Cake day: August 14th, 2023

help-circle
  • Also, if you’re trying to deal with branches, I really prefer trunk based development. Everything deployable to your environments comes from trunk/master/main (whatever you call it). It should help prevent people overriding your changes, as long as you are using git and merge/pull requests. Have a good pipeline to ensure builds and tests are successful before merges, and use feature flags where needed.