Following situation. I work on feature branches in git which I merge into common develop branch when I'm finished with the corresponding feature. Since it can take considerable time to get a feature completed, I merge the develop into my feature branch on a regular basis, to keep getting updates of code by my colleagues.
Now, when I'm finished and merge my feature branch into develop, all commits I've done on the feature branch appear in the history of develop. But I would like to have only one merge commit to keep the history clear. I don't need all the intermediate stuff.
Is that possible?