svn - A PHP Github class to do updates only -


i have php application want extend self updating capabilities. me best solution use sort of svn protocol update php application.

currently application hosted on github, i'm looking class able update local application latest version on github.

is there such class available? i'd have class that. don't need functionality commit code, list files in repository or things that. needs update.

so i'm looking pure php class can this, doesn't need github application installed on machine in order work.

so simple like:

$repo = new github ( 'path/to/local/repo', 'url/to/remote/repo', 'master' ); $repo->update ( ); 


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -