I have a GitHub fork with an additional branch for a pull-request purpose.
I want to keep this branch integrated by merging from master
often (I keep my master
branch fresh by pulling from the upstream repo).
If I just merge from master
, all pulled commits are squashed into a single merge commit.
Will it break my pull-request or will GitHub still be able to diff properly? And if it does break, is there any other suggestion on keeping my pull-request branch integrated?
Thanks!