CubitOom
- 0 Posts
- 5 Comments
Joined 2 years ago
Cake day: June 8th, 2023
You are not logged in. If you use a Fediverse account that is able to follow users, you can follow this user.
CubitOom@infosec.pubto Nintendo@lemmy.world•Yuzu emulator shutting down, paying Nintendo 2.4 million in lawsuit settlementEnglish63·1 year agoIn completely unrelated news, I now have a private repo on my private gitea that has a lot of c++ code
CubitOom@infosec.pubto Programming@programming.dev•GitHub besieged by millions of malicious repositories in ongoing attackEnglish24·1 year agoToo bad the phrase fork bomb is already taken
In TBD, it’s not a “release” until its production ready. The methodology and philosophy doesn’t prevent you from developing multiple feature branches at once or even deploying a work in progress feature branch to a dev environment.
All TBD requires in that case is once the feature branch is production ready, it’s merged to the trunk. You may need to add a feature toggle if there are multiple release like for different architectures. And you also might benefit from using git tags and deploying to production from a git tag instead of the most recent commit on a branch.
Exactly what you need to do is going to depend on the project’s exact needs but TBD is totally possible in that example.