I am trying to create a working tree for people to read from and have it
update from a bare repository regularly. Right now I am using git-pull to
fetch the changes, but its running slow due to the size of my repo and the
speed of the hardware as it seems to be checking the working tree for any
changes.
Is there a way to make the pull ignore the local working tree and only look
at files that are changed in the change sets being pulled?
Bevan