Today i ran pull
option from eclipse
, but i did not get any changes from server, even though i see the changes are there in my current branch. I tried the same command git pull
from git bash but that also said everything is up-to-date
. However when i ran the git pull origin branch1
i got all the changes to my local.
What's the difference between git pull
and git pull origin branch1
when i am running this command from my current branch?
How do i tell eclipse to run git pull origin <current_batch>
when i chose pull option from UI.