Github user rhtyd commented on the pull request:
https://github.com/apache/cloudstack/pull/1537#issuecomment-218374853
@PaulAngus can you squash the changes, so on the PR we get the changes as
one single commit.
You can do:
```
git checkout master # your master
git remote add upstream
https://git-wip-us.apache.org/repos/asf/cloudstack.git # do this if upstream is
not already added
git pull --rebase upstream master
# squash your changes: [1]
git rebase -i HEAD~5
# convert pick to s or squash all commits except for your first commit
# rebase again:
git pull --rebase upstream master
# push -f on your repo/branch
git push origin master -fv
```
[1]
http://gitready.com/advanced/2009/02/10/squashing-commits-with-rebase.html
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---