mirror of
https://github.com/fortressforever/git-svn-sync.git
synced 2024-11-21 11:41:08 +00:00
Remove --allow-empty option from cherry-pick
This commit is contained in:
parent
5462597156
commit
3e85f68c5d
1 changed files with 1 additions and 1 deletions
|
@ -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; }
|
||||
|
|
Loading…
Reference in a new issue