Hi, The log should be the same. You are looking at the logs of two different things:
repository A (some_local_git_repo) - has a remote called "origin" which is where it was originally cloned from (github? some server?) repository B (your local clone) - has a remote called "origin" which is repository A. So when you do git log origin/master in repository B - it is the equivalent of running "git log master" in repository A. If you run "git pull origin master" in repository A - and then run "git pull origin master" in repository B - they should produce the same log afterwords, provided you haven't made any local commits in repository B. -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To view this discussion on the web visit https://groups.google.com/d/msg/git-users/-/lqM-88sZJu8J. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/git-users?hl=en.
