You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@phoenix.apache.org by James Taylor <ja...@apache.org> on 2014/02/06 01:48:34 UTC

unable to do a git push

I'm getting the following error when I try to do a git push to the phoenix
git repo and I'm not sure how to get around it.

error: no DAV locking support on
https://git-wip-us.apache.org/repos/asf/incubator-phoenix.git/
fatal: git-http-push failed

Here's what my .git/config looks like:

Anyone know what I need to do to fix this?

Thanks,
James

[core]
        repositoryformatversion = 0
        filemode = true
        bare = false
        logallrefupdates = true
        ignorecase = true
        precomposeunicode = false
[remote "origin"]
        fetch = +refs/heads/*:refs/remotes/origin/*
        url = https://git-wip-us.apache.org/repos/asf/incubator-phoenix.git
[branch "master"]
        remote = origin
        merge = refs/heads/master
[user]
        name = James Taylor
        email = jamestaylor@apache.org
[branch "2.2.3"]
        remote = origin
        merge = refs/heads/2.2.3

Re: unable to do a git push

Posted by lars hofhansl <la...@apache.org>.
I got the same yesterday (or the day before) and it somehow autofixed itself for me.



________________________________
 From: James Taylor <ja...@apache.org>
To: "dev@phoenix.incubator.apache.org" <de...@phoenix.incubator.apache.org> 
Sent: Wednesday, February 5, 2014 4:48 PM
Subject: unable to do a git push
 

I'm getting the following error when I try to do a git push to the phoenix
git repo and I'm not sure how to get around it.

error: no DAV locking support on
https://git-wip-us.apache.org/repos/asf/incubator-phoenix.git/
fatal: git-http-push failed

Here's what my .git/config looks like:

Anyone know what I need to do to fix this?

Thanks,
James

[core]
        repositoryformatversion = 0
        filemode = true
        bare = false
        logallrefupdates = true
        ignorecase = true
        precomposeunicode = false
[remote "origin"]
        fetch = +refs/heads/*:refs/remotes/origin/*
        url = https://git-wip-us.apache.org/repos/asf/incubator-phoenix.git
[branch "master"]
        remote = origin
        merge = refs/heads/master
[user]
        name = James Taylor
        email = jamestaylor@apache.org
[branch "2.2.3"]
        remote = origin
        merge = refs/heads/2.2.3

Re: unable to do a git push

Posted by alex kamil <al...@gmail.com>.
In .git/config try changing "url = http://" to "url = ssh://id" .
from
http://stackoverflow.com/questions/9243404/unable-to-push-a-git-repo-via-http


On Wed, Feb 5, 2014 at 7:48 PM, James Taylor <ja...@apache.org> wrote:

> I'm getting the following error when I try to do a git push to the phoenix
> git repo and I'm not sure how to get around it.
>
> error: no DAV locking support on
> https://git-wip-us.apache.org/repos/asf/incubator-phoenix.git/
> fatal: git-http-push failed
>
> Here's what my .git/config looks like:
>
> Anyone know what I need to do to fix this?
>
> Thanks,
> James
>
> [core]
>         repositoryformatversion = 0
>         filemode = true
>         bare = false
>         logallrefupdates = true
>         ignorecase = true
>         precomposeunicode = false
> [remote "origin"]
>         fetch = +refs/heads/*:refs/remotes/origin/*
>         url =
> https://git-wip-us.apache.org/repos/asf/incubator-phoenix.git
> [branch "master"]
>         remote = origin
>         merge = refs/heads/master
> [user]
>         name = James Taylor
>         email = jamestaylor@apache.org
> [branch "2.2.3"]
>         remote = origin
>         merge = refs/heads/2.2.3
>