I am not able to pull from a remote branch using source tree as the remote branch where I'm trying to pull the changes is not listed in the "Remote branch to pull" dropdown.
I tried adding account/regenerating the RSA key, but no luck. I facing this issue after installing the latest release 3.1.2.3027. Note this was working fine with the older installations.
For some reason, my branch was not tracking the remote. Ensure your local branch is tracking the report. From your local branch:
$ git branch -u <remote>/<branch>
where <remote> and <branch> represent the name of your remote and the branch to track
This resolved my problem in SourceTree not 'remembering' the remote branch to push to each time.
Hello! Does the remote branch appear in the sidebar under "Remotes"?
If it doesn't, could you try and run "Fetch" and see if it appears?
If none of that works, you can also manually pull by clicking "Terminal" and typing
git pull origin THE_REMOTE_BRANCH_NAME
(Note: if your remote name is not origin then you'll need to replace it)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.