Re: git-http-push / webDAV
From: Thomas Pasch <hidden>
Date: 2016-06-15 22:43:37
Dear Eygene, well, *somewhat* better with the trailing slash:
echo "modified" >>grep.c git commit -a
Created commit e147e54: mod 1 files changed, 1 insertions(+), 0 deletions(-)
git push -v
Pushing to http://test@192.1.1.184/git/git.git/ Fetching remote heads... refs/ refs/heads/ refs/tags/ updating 'refs/heads/master' from 34c6dbdef439f7cd93d3fe22493a3c1496ce96f7 to e147e54b14828fa2e88e88907e0ca4dc3d694448 sending 3 objects done Updating remote server info There's no more error message. However, push has still not worked. If I try to check out the new HEAD:
git clone http://test@192.1.1.184/git/git.git/
Initialized empty Git repository in /home/tpasch/tmp/git/.git/ Getting alternates list for http://test@192.1.1.184/git/git.git Getting pack list for http://test@192.1.1.184/git/git.git Getting index for pack 563e2090185692c7d765775569a0ce986840fd17 Getting pack 563e2090185692c7d765775569a0ce986840fd17 which contains 3af9d3e08da868c3a7687ab38d72f4296a99005d [...] walk 24778e335a6450e34257a311d0bf4a12bdb3006c walk 19b2860cba5742ab31fd682b80fefefac19be141 walk bf0c6e839c692142784caf07b523cd69442e57a5 walk e497ea2a9b6c378f01d092c210af20cbee762475 walk 8bc9a0c769ac1df7820f2dbf8f7b7d64835e3c68 walk e83c5163316f89bfbde7d9ab23ca2e25604af290 Getting alternates list for http://test@192.1.1.184/git/git.git Getting pack list for http://test@192.1.1.184/git/git.git error: Unable to find e147e54b14828fa2e88e88907e0ca4dc3d694448 under http://test@192.1.1.184/git/git.git Cannot obtain needed object e147e54b14828fa2e88e88907e0ca4dc3d694448 Cheers, Thomas Eygene Ryabinkin wrote:
Thomas, good day. Tue, Oct 02, 2007 at 10:49:07AM +0200, Thomas Pasch wrote:quoted
I've investigated my problem a little further. The nasty 'UNLOCK HTTP error 400' has come from a proxy that doesn't accept webDAV stuff. Thus I unset the 'http_proxy' env variable (looks like cadaver hasn't cared...).Yep, proxies can be tricky with the DAV stuff.quoted
However, the main problem still remains. Using a non empty remote http repo, modifying and committing, then:quoted
git push -vPushing to http://test@x.x.x.x/git/git.git still waits for a long time and finally: Error: no DAV locking support on remote repo http://test@x.x.x.x/git/git.git error: failed to push to 'http://test@x.x.x.x/git/git.git'Try using URL with the slash at the end, like 'http://test@x.x.x.x/git/git.git/'. This should help.