My unorthodox, branchless Git workflow
drewdevault.com
My unorthodox, branchless Git workflow
1–10 of 48 posts
Re: My unorthodox, branchless Git workflow
#2Re: My unorthodox, branchless Git workflow
#3nope.
Re: My unorthodox, branchless Git workflow
#4 No time spent creating new branches for new features.
No time spent switching between branches to address feedback.
I'm sorry but these are non-issues with git. The approach you've outlined makes collaboration on features impossible. Cherry-picking and rebasing does not scale for either teams, or lots of parallel workstreams.Re: My unorthodox, branchless Git workflow
#5Re: My unorthodox, branchless Git workflow
#61: http://www.procode.org/stgit/
I miss the days when you were expected to use a porcelain on top of raw git.
Re: My unorthodox, branchless Git workflow
#7No time spent creating new branches for new features. No time spent switching between branches to address feedback. I'm sorry but these are non-issues with git. The approach you've outlined makes collaboration on features impossible. Cherry-picking and rebasing does not scale for either teams, or lots of parallel workstreams.
He may think that he is rebasing later anyway, but sorting all those commits into "need for my feature" vs. "don't need for my feature", followed by the rebasing within the feature certainly takes much longer than the split second of creating a branch and keeping those features separate from the beginning.
It's great if it works for him, but he's certainly not saving time.
Re: My unorthodox, branchless Git workflow
#8I don't see the value-add at all.
Re: My unorthodox, branchless Git workflow
#9A long time ago I used to use Stacked Git (1) for a similar but different workflow. 1: http://www.procode.org/stgit/ I miss the days when you were expected to use a porcelain on top of raw git.