On Tue, Oct 26, 2010 at 21:47, Vitaliy Semochkin <vitaliy.se@xxxxxxxxx> wrote: > I cloned a remote repository > to check recent changes in origin/master I do: > git fetch origin master > git log origin master > > recently I found out that log doesn't show recent commits The command "git log origin master" lists all commits of the branch "origin" affecting the file "master". Are you sure that is what you want? Maybe you meant: $ git log origin/master # the history of upstream ("origin") branch "master" or $ git log origin/master.. # changes in the active branch not merged into upstream -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html