i'm trying to write a buildfile with phing and the GitCloneTask (to clone a repo from github), but i keep getting this message everytime i run phing:
The remote end hung up unexpectedly
So i checked if i could clone the repo with git-clone => works just fine;
checked my .gitconfig for an error with the Github API Token & Username => no typos or something
checked all repo-urls provided on github (ssh, https, read-only) => none of them changes the message when used in the buildfile
any ideas?
here's the code of the buildfile:
<?xml version="1.0" encoding="UTF-8"?>
<project name="ort" default="init">
<!-- ============================================ -->
<!-- Target: initialize -->
<!-- ============================================ -->
<target name="init">
<input propertyname="local.documentRoot">Where to put the files?:</input>
<mkdir dir="${local.documentRoot}" />
<gitclone
repository="git://github.com/pappelt/oil-resistance-test.git"
targetPath="${local.documentRoot}" />
</target>
</project>