Git: The Current Branch is not Configured for Pull
Fixing the Git Error: The Current Branch is not Configured for Pull Are you trying to perform a git pull from a remote git repo within Eclipse? Does the pull request work for your master branch but not on other branches? Are you seeing an error message like below: The current branch is not configured for pull No value for key branch.develop.merge found in configuration Or an error message such as the following: The current branch is not configured for pull No value for key remote.origin.url found in configuration Error message trying to pull from a remote git branch Most likely, you created the branch locally and you haven't set the merge section of that branch and/or your local branch is not tracking the remote branch. The problem lies in your git local configuration. There are many ways to fix this but the most straightforward for me is the following: Open up your Git Bash: Open your git bash from the Start Menu ...