Github user ajayyadava commented on the issue:
https://github.com/apache/orc/pull/151
@xndai You can use the following command to squash your last K commits into
1:
git reset --soft HEAD~K && git commit
e.g. to squash last 2 commits into one, replace K with 2
git reset --soft HEAD~2 && git commit
I will advise that you create a separate branch from the branch you want to
commit and try it on that first.---
