On Mon, Oct 20, 2008 at 10:34:53AM +0200, Simon Strandgaard wrote: > git-stash cannot find the repository when the path is a symbolic link. > solution for me was to cd to the absolute path and then do git-stash. Sorry, I can't reproduce here, using this test: mkdir repo && cd repo && git init && echo content >file && git add file && git commit -m one && cd .. && ln -s repo linked && cd repo && echo cruft >>file && git stash && echo non-linked directory stashed ok && cd ../linked && echo cruft >>file && git stash && echo linked directory stashed ok What version of git are you running (though I tried a few different ones, and all passed my test)? -Peff -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html