I am using git flow.
I have a repository inside of an organization that is the headquarters for a project, I also have a fork of this repository in my personal repos. When I make a change to the code, I create a pull request on the organization's repo.
My question is, how do I pull/merge that pull request's merge commit into my personal repo?
Do I git checkout master && git pull upstream master
?
Then how do I manage the develop branch? git checkout develop && git merge master
?