I was wondering if anyone knows of a library or how to perform a get pull request with pure PHP, without git being installed on the server.

First of all, is this even possible? I have seen the odd class, but they don't seem to be able to perform pull requests.

I guess an alternative would be bundling some form of stripped down version of git with my script. Would that be possible?

I am really at a loss here so any help or suggestions would be much appreciated.

Thanks.

link|improve this question

5  
You want to use git without having git? – Matt Ellen Aug 9 '11 at 10:32
Do you want to do a git pull, or to do a pull request on some provider like github ? This is not the same. – arnaud576875 Aug 9 '11 at 10:35
@Matt Pretty much. It sounds fairly impossible but I just want to know if anyone else has ever done it. I have been looking at the git folder installed locally, I wonder if you could bundle only the binaries you need in a stripped down version. – Wolfy87 Aug 9 '11 at 10:37
@user576875 It would probably be a pull request from GitHub yes. I want to simulate a git pull from a provider such as GitHub. – Wolfy87 Aug 9 '11 at 10:38
show 5 more comments
feedback

1 Answer

up vote 3 down vote accepted

I have just realised that you can use SVN to request a repository from GitHub.

And SVN seems supported by PHP.

So I will use SVN, it should do the trick.

I hope this has saved someone else the trouble of Googling for hours. Give SVN + GitHub a go.

link|improve this answer
1  
this requires svn library to be installed – Maysam Jan 13 at 3:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.