I have a few GIT repos that I mirrored locally to show up in my JIRA instance, but I have noticed some (to me) strange behaviour.

I have a repo, we will call this "myrepo". If I do a git clone, and git pull, I always get the most recent commits.

However, when I do a git clone --bare, when I do a "git fetch" from my bare repository, I do not get the newer commits showing up in my "git log".. Why is this?

link|improve this question

80% accept rate
feedback

1 Answer

up vote 2 down vote accepted

The fetch isn't moving your HEAD. Therefor, the log is only showing you the history from where HEAD was before the fetch. Try git log -all. This will show you the history of all branches, including the remote one you fetched in.

Also git log remoteBranchName will work if you know the name of the remote branch you are interested in.

If you want all everything to be in sync with the remote master, you have to run either git fetch, then git merge or just run git pull which is the same as running fetch and merge. If you prefer a specific branch - ex. master - git pull origin master

link|improve this answer
Thanks. How do make the bare repository current with the new history? The plugin only shows, like you said, from where the head was before the fetch – Yablargo Sep 30 '11 at 20:19
1  
One way would be git reset --soft shaToMoveHeadTo – Andy Sep 30 '11 at 20:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.