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 67cbde2 commit 64342b7Copy full SHA for 64342b7
scripts/cherry-pick.sh
@@ -108,10 +108,10 @@ apply_patches () {
108
echo "Applying $patchfile"
109
if [ "$index" -eq 0 ] ; then
110
# use the commit details of the first patch
111
- git am "$patchfile" "--committer-date-is-author-date"
+ git am -3 "$patchfile" "--committer-date-is-author-date"
112
else
113
# for subsequent patches, just amend the previous commit
114
- git apply "$patchfile" #"--whitespace=fix" ?
+ git apply -3 "$patchfile" #"--whitespace=fix" ?
115
git add .
116
git commit --amend --no-edit
117
fi
0 commit comments