If you're asking "how do I pull only one specific file from the remote server", I think the short answer is: you can't, Git is not SVN. However, if you're against doing a full pull, you could do `git fetch origin; git checkout origin/master -- file`. This will do a full "update" from the origin server, but leave your master branch untouched, since there's no merge.
-- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/git-users?hl=en.
