The eclipse egit code plug-in cannot pull the remote branch to solve the problem

cause of the incident

When we use the eclipse egit plug-in to pull the code, we find that the code can only pull the update of the current branch every time we pull the code, but other people’s submissions cannot be obtained, that is, we find that remote Tracking only has the current branch, and it is usually the first time to pull the code The chosen branch is mostly (master), mostly a matter of setup.

Solution

Just follow the steps below

 

Modify the configuration to: +refs/heads/*:refs/remotes/origin/*

Click Save and pull the code again to pull the code perfectly, and the personal test is effective.

 

Guess you like

Origin blog.csdn.net/m0_37506254/article/details/127319888