gitext-rs / git-stack

Stacked branch management for Git
Apache License 2.0
491 stars 19 forks source link

feat(run): Fail fast support #265

Closed epage closed 1 year ago

epage commented 1 year ago

If a command failed on a commit, we won't run the command on the descendant commits as they are likely to fail as well and someone is likely wanting to fix the first failure.

The default can be configured by changing the alias to include --no-ff. A user can then override this with the hidden --ff.

Fixes #262