git clone git@bitbucket.org:yourname/repo.git
cd repo git flow init -d git pull origin develop git branch --set-upstream develop origin/develop
git flow feature start feature-xxx git add . git commit -m 'xxxx' git flow feature finish feature-xxx
git push origin develop
git remote add upstream git@bitbucket.org:fstone/xxx.git
git fetch upstream
git merge upstream/develop develop