SpecialistOff.NET / Вопросы / Статьи / Фрагменты кода / Резюме / Метки / Помощь / Файлы

Список вопросов Печать

There is no tracking information for the current branch


Метки: git 

При попытке выполнить

$ git pull
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> dev

Ответы

RemiZOffAlex  Создано: 2018-12-02 21:44:00.739945  Обновлено: 2018-12-02 21:44:00.739945

Выполнить

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

Возможно будут интересны и другие вопросы