vote up 4 vote down star
2

Is it even possible?

Basically, there's a remote repository from which I pull using just:

git pull

Now, I'd like to preview what this pull would change (a diff) without touching anything on my side. The reason is that thing I'm pulling might not be "good" and I want someone else to fix it before making my repository "dirty".

EDIT: a solution not involving git-fetch (which cannot be cleanly undone if you have uncommitted local changes) would be preferable.

flag

Your edit is weird. Doing a "git fetch" doesn't alter your working tree in any way, so it doesn't matter if you have uncommitted local changes. And it's unclear whay part of the fetch you want to undo, since it doesn't touch your work tree. – dkagedal Oct 8 '08 at 19:42

2 Answers

vote up 9 vote down check

After doing a git fetch, do a git log HEAD..origin to show the log entries between your last common commit and the origin branch. To show the diffs, use either git log -p HEAD..origin to show each patch, or git diff HEAD...origin (three dots not two) to show a single diff.

There normally isn't any need to undo a fetch, because doing a fetch only updates the remote branch and none of your branches. If you're not prepared to do a pull and merge in all the remote commits, you can use git cherry-pick to accept only the specific remote commits you want. Later, when you're ready to get everything, a git pull will merge in the rest of the commits.

Update: I'm not entirely sure why you want to avoid the use of git fetch. All git fetch does is update your local copy of a remote branch. This local copy doesn't have anything to do with any of your branches, and it doesn't have anything to do with uncommitted local changes. I have heard of people who run git fetch in a cron job because it's so safe.

link|flag
I guess I missed that part of 'nothing to do with MY branches' while reading the docs. Thanks. – Milan Babuškov Oct 8 '08 at 19:38
vote up 2 vote down

I think git fetch is what your looking for.

It will pull the changes and objects without committing them to your local repo's index.

They can be merged later with git merge.

Man Page

Edit: Further Explination

Straight from the Git- SVN Crash Course link

Now, how do you get any new changes from a remote repository? You fetch them:

git fetch http://host.xz/path/to/repo.git/

At this point they are in your repository and you can examine them using:

git log origin

You can also diff the changes. You can also use git log HEAD..origin to see just the changes you don't have in your branch. Then if would like to merge them - just do:

git merge origin

Note that if you don't specify a branch to fetch, it will conveniently default to the tracking remote.

Reading the man page is honestly going to give you the best understanding of options and how to use it.

I'm just trying to do this by examples and memory, I don't currently have a box to test out on. You should look at:

git log -p //log with diff

A fetch can be undone with git reset --hard (link) , however all uncommitted changes in your tree will be lost as well as the changes you've fetched.

link|flag
If you explain two things, that might be good: 1. how do I undo git-fetch? 2. How do I see the diff? – Milan Babuškov Oct 7 '08 at 20:50
1) undoing git-fetch? 2) git diff HEAD..origin – Christian Vest Hansen Oct 7 '08 at 22:27
The diff is done as Christian said, a fetch can be undone with git reset --hard , however all uncommitted changes in your tree will be lost as well as the changes you've fetched. – Brian Gianforcaro Oct 7 '08 at 23:26
@Brian: exactly. Is there some other way beside git reset --hard? Or, even better, some way of comparing without git fetch in the first place. – Milan Babuškov Oct 8 '08 at 1:44
Are you looking for git reset --soft or --mixed? Check the manpage. – Aristotle Pagaltzis Oct 19 '08 at 0:22

Your Answer

Get an OpenID
or

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