What is the perferred workflow to pull a published release branch from the central repo using git-flow?
eg:
Mike made a release branch, he published it through "git flow release publish 1.0"
Jane would like to work on that release branch too, how does she pull it from the central repo to continue working with git flow on that particular branch?
- create the branch herself locally through
git flow release start 1.0
and thengit pull
? - create a tracking branch locally through git with
git checkout -b release/1.0 origin/release/1.0
and continue from there (does git flow work on the branch this way?)