Signed-off-by: Hugo Villeneuve <hugo@hugovil.com>
git branch --set-upstream-to ${base_branch}
fi
-git cherry-pick ${COMMIT_START_SHA1}..${COMMIT_END_SHA1}
+git cherry-pick ${COMMIT_START_SHA1}..${COMMIT_END_SHA1} 1>/dev/null
if [ "${use_b4}" = "1" ]; then
b4 prep --check-deps
git checkout -b ${temp_compile_branch} ${compile_branch}
# Apply all of our commits to temp_compile_branch:
- git cherry-pick ${COMMIT_START_SHA1}..${COMMIT_END_SHA1}
+ git cherry-pick ${COMMIT_START_SHA1}..${COMMIT_END_SHA1} 1>/dev/null
# Compile and test each commit:
git rebase --exec=${compile_script} ${compile_branch}