I forked a repository on GitHub.
I then cloned my fork into a folder on my local development enviroment through SmartGit. Additionally I added the original repository as a remote.
Now, the original repository has added and changed some files. I'd like to retrieve these so that I'm up to date, before continuing with developing.
I the push the Pull button in SmartGit and select the original repo i the dialog. SmartGit returns this to me:
remote: Counting objects: 24, done.
remote: Total 13 (delta 7), reused 12 (delta 6)
From github.com:Original/repo
* [new branch] master -> lm/master
But, the added files and changes are not added to my local repository.
Doing this manually with Git Bash - git pull original master
everything works like expected.
Why is it SmartGit doesn't pull like I expect?