I have a git repo that I want to do a pull from. I do a normal git pull
with no problems. The issue is that I want just one certain directory out of the repo. My thinking was that I could use a .gitignore
file with a rule like this:
#Ignore all files
/
#Except the one I want
!/temp
The problem is this doesn't work. Is that the right way to do it or is there a better way?