P
P
PanLipton2021-12-17 02:37:07
git
PanLipton, 2021-12-17 02:37:07

What does git pull want from me?

61bbcd9439aed391982581.jpeg

Answer the question

In order to leave comments, you need to log in

2 answer(s)
S
Sergey Kuznetsov, 2021-12-17
@PanLipton

% git pull                                      
У текущей ветки нет информации об отслеживании.
Пожалуйста, укажите с какой веткой вы хотите слить изменения.
Для дополнительной информации, смотрите git-pull(1).

    git pull <внешний-репозиторий> <внешняя-ветка>

Если вы хотите указать информацию о отслеживаемой ветке, выполните:

    git branch --set-upstream-to=<внешний-репозиторий>/<внешняя-ветка> <локальная-ветка>

It looks like you added a remote called MyBot, but forgot to link the current master branch to an upstream one.
Therefore, Git does not know where to download from and asks you to specify where exactly you want to download the commits from.
For example like this:
# скачать ветку master из внешнего репозитория MyBot и слить с текущей локальной веткой
git pull MyBot master

Or link the parent branch to the current branch to make pull without parameters work:
# связать локальную ветку master c внешней веткой master
git branch --set-upstream-to=MyBot/master master

M
mathrep, 2021-12-17
@mathrep

git pull origin master or whatever your current branch is called

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question