Remove --allow-empty option from cherry-pick

This commit is contained in:
squeek 2014-11-12 14:58:28 -08:00
parent 5462597156
commit 3e85f68c5d

View file

@ -45,6 +45,6 @@ if [ -n "$(git status --porcelain)" ] ; then
fi
git fetch origin
git cherry-pick -Xtheirs --allow-empty ${commits_to_pick} || { report "Could not cherry pick from git repository" ; exit 1; }
git cherry-pick -Xtheirs ${commits_to_pick} || { report "Could not cherry pick from git repository" ; exit 1; }
git svn dcommit || { report "Could not send changes to svn repository" ; exit 1; }