I get this error when I try to pull from remote repository using Egit team>pull
The current branch is not configured for pull No value for key
branch.master.merge found in configuration
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Your local master branch is not set up to track remote master branch.
You could do
git pull origin masterto tell git the explicit branch you want to pull or you add this to your .git/config:When you push to master for the first time, add the
-uswitch (git push -u origin master). This will set everything up automatically.