Yann Simon <yann.simon.fr@xxxxxxxxx> wrote: > Hi, > > with git version 1.6.4: > > $ git svn show-ignore > .gitignore > RA layer request failed: Server sent unexpected return value (403 > Forbidden) in response to PROPFIND request for > '/repos/XXX/YYY/ZZZ/trunk/aaa' at /usr/lib/git-core/git-svn line 2243 > > Is git svn show-ignore making request to the svn server? Hi Yann, Yes, git svn has to read the svn:ignore property remotely since it doesn't do anything with it when it fetches. Do you have read permissions to /repos/XXX/YYY/ZZZ/trunk/aaa on that repo? > I tried also with the --no-minimize-url option but get as answer: > $ git svn --no-minimize-url show-ignore > Unknown option: no-minimize-url > > Thanks for the help For everything besides initialization/clone, git svn reads the url in your $GIT_CONFIG. --minimize-url is only used for the initial setup. You can edit it to move the URL down/up a level if you edit your corresponding fetch/branches/tags lines: before: [svn-remote "svn"] url = http://example.com/ fetch = project/trunk:refs/remotes/trunk branches = project/branches/*:refs/remotes/* tags = project/tags/*:refs/remotes/tags/* after: [svn-remote "svn"] url = http://example.com/project fetch = trunk:refs/remotes/trunk branches = branches/*:refs/remotes/* tags = tags/*:refs/remotes/tags/* -- Eric Wong -- 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