We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ba113b commit caa012dCopy full SHA for caa012d
1 file changed
scripts/sync-branch
@@ -10,7 +10,7 @@ fi
10
tags_to_sync=("$@")
11
12
for tag_to_sync in "${tags_to_sync[@]}"; do
13
- if git merge --no-ff "$tag_to_sync"; then
+ if git merge --no-edit --no-ff "$tag_to_sync"; then
14
continue
15
fi
16
@@ -20,7 +20,7 @@ for tag_to_sync in "${tags_to_sync[@]}"; do
20
21
git checkout "$tag_to_sync" -- '.'
22
git add --all
23
- git merge --continue
+ git merge --no-edit --continue
24
done
25
26
# Check that every tag is in the branch.
0 commit comments