Kevin Goslar
Kevin Goslar
The reason why this test case is important is because it ensures that we properly stash away changes before checking out another branch in a script. Here is an example:...
I think this case is a superset of `with open changes` and should replace it. I'm hesitant to add 50% more tests to our test suite. We are already pretty...
I still think this is an edge case that can happen quite frequently. Pretty much anytime there are uncommitted changes that conflict with something on the main branch. So I...
Nice! Our assistant could propose that as the default answer!
Ideally we move to continuous releases. People contribute features and it takes weeks before they roll out. Given that all our QA is automated, and we do zero manual QA,...
autopub seems for Python code
Goreleaser only publishes to a private tap, not the main Homebrew repo. Still much better than what we had before!
Hey @brighthero, Git Town doesn't use the `--no-ff` option when shipping, see [the end-to-end test for it](https://github.com/Originate/git-town/blob/master/features/git-town-ship/current_branch/on_feature_branch/without_open_changes/with_tracking_branch.feature#L27). This must somehow come from your Git configuration. Can you please post the...
That same email thread suggests providing `--ff` to the squash command in order to override the Git configuration, which shouldn't apply in this case anyways. So, this squash command should...
Thanks for the suggestion! You are right, the only command that supports `--dry-run` is `git town sync` right now. Adding this as a feature request, but setting the expectation that...