Most Git workflows involve heavy use of branches to track commit work that is underway. However, branches require that you "name" every commit you're interested in tracking. If you spend a lot of time doing any of the following:
git stash
es you made previously.Then the branchless workflow may be for you instead.
The branchless workflow is designed for use at monorepo-scale, where the repository has a single main branch that all commits are applied to. It's based off the Mercurial workflows at large companies such as Google and Facebook. You can use it for smaller repositories as well, as long as you have a single main branch.
The branchless workflow is perfectly compatible with local branches if you choose to use them — they're just not necessary anymore.
See https://github.com/arxanas/git-branchless/wiki/Installation.
git-branchless
is currently in beta. It's believed that there are no major bugs, but it has not yet been comprehensively battle-tested.