On Fri, Oct 14, 2016 at 02:10:18PM +0200, racoon wrote:
> Thanks. Unfortunately, the final step "git pull" gives me this:
> 
> There is no tracking information for the current branch.
> Please specify which branch you want to merge with.
> See git-pull(1) for details.
> 
>     git pull <remote> <branch>
> 
> If you wish to set tracking information for this branch you can do so with:
> 
>     git branch --set-upstream-to=origin/<branch> master

Try the following command:

 git branch --set-upstream-to=origin/master master

The command says that your local master branch should be linked to the
remote's master branch. That way when you do a git pull it will update.

Scott

Attachment: signature.asc
Description: PGP signature

Reply via email to