Hi, I believe this is a natural effect of being a distributed system. The two different PC's have different setup, so when git is displaying the local repository it can only 'attempt' to infer what the contents of the remote repositories (content of other reference servers) is, such as 'origin'
It looks like the other PC either does not have a remote repository called 'origin' (unlikely), or that that the local PC knows about the remote called origin is different to that of the local repository HEAD. It is telling you that the HEAD link points to the branch named master (same for both PCs), bit that for the second PC, the local branch master does not point to the "remote tracking branch (rtb)" (the local branch that tracks the remote branch) of that name. Try `git fetch origin` to bring the rtb up to date, and see if it is still showing the same thing, and that the Object ID (oid/sha1) values are the same between the two PCs. Philip On Monday, April 20, 2020 at 2:06:46 PM UTC+1, ldm wrote: > > > Hello, > > There are two people working on the same project. > > While doing the 'git log', one see it with (HEAD->master, *origin/master*) > and another with just (HEAD -> master) without *origin/master*. > > What does it mean? Actually one cannot see the commits of another. > > Thank you! > > -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To unsubscribe from this group and stop receiving emails from it, send an email to git-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/git-users/ed799705-9077-4ca0-a4d4-0369109b92b6%40googlegroups.com.