Re: history missing

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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


[Index of Archives]     [Linux Kernel Development]     [Gcc Help]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [V4L]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]     [Fedora Users]