Victor,
First you have to set up your local repository to track that remote feature
branch. Git flow provides help setting this up so just do a "git flow
feature track <name>" and then a "git pull" from that feature branch should
work.
David
On Sunday, August 19, 2012 6:23:34 PM UTC-7, Victor Yankee wrote:
> Hello,
> I'm in a group starting to use git flow. We are using Git-Flow AVH if that
> matters.
> I did a git flow feature start <blah>, then some work and some commits and
> then git flow feature publish. All seems well.
> I can see the feature on the remote.
> But when someone else does git flow feature pull <blah> it does not work.
> What is the magic?
> Thanks.