Skip to content

Commit

Permalink
Merge pull request #42 from bith3ad/b4-compatible
Browse files Browse the repository at this point in the history
Skip empty commits for umpf-tags
  • Loading branch information
michaelolbrich authored Jul 2, 2024
2 parents d905c70 + 96fe807 commit c2580a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion umpf
Original file line number Diff line number Diff line change
Expand Up @@ -1083,7 +1083,7 @@ rebase_branch() {
if ${GIT} log --oneline "${base}..${topicrev}" | grep -q '\(amend\|fixup\|squash\)!'; then
args="-i --autosquash"
fi
if ! ${GIT} rebase -q ${args} --onto HEAD "${base}" "${topicrev}" >&2; then
if ! ${GIT} rebase -q ${args} --no-keep-empty --onto HEAD "${base}" "${topicrev}" >&2; then
if ! rebase_try_continue; then
bailout "rebase failed"
fi
Expand Down

0 comments on commit c2580a2

Please sign in to comment.