I have a git branch named branch_name
.
I used git pull
, and after getting Already up to date..
I ran git diff origin/branch_name branch_name
in order to see if the branches identical. Well there is one file with some diffs.
I used git diff HEAD branch_name
and it yields an empty line. When used git diff HEAD origin/branch_name
it founds the same diffs. If I understood Git correctly, it means the fetch is not working as I expected?
I am bit new to Git. Please help me solve this pull problem. I wish to merge the remote repository to my local repo.