Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions scripts/sync-branch
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ fi
tags_to_sync=("$@")

for tag_to_sync in "${tags_to_sync[@]}"; do
if git merge --no-ff "$tag_to_sync"; then
if git merge --no-edit --no-ff "$tag_to_sync"; then
continue
fi

Expand All @@ -20,7 +20,9 @@ for tag_to_sync in "${tags_to_sync[@]}"; do

git checkout "$tag_to_sync" -- '.'
git add --all
git merge --continue

# Can't use --no-edit with --continue
EDITOR=true git merge --continue
done

# Check that every tag is in the branch.
Expand Down