[Solved] What is the default remote branch for git pull?


There isn’t one. You have to set one up.

You can Look at which branches fetch from which remote branches with

$ git branch -vv

You can change which branch your branch pushes/pulls from with

$ git branch --set-upstream <remote/branch>

0

solved What is the default remote branch for git pull?