Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm researching the idea of building a super-small (preferably PHP) web app, which will serve (among other things) as a minimal front-end to a git repository.

Any library/article for reading a git repository (".git" folder) without having to execute the "git" process? I'm looking for an API to manage a git repository. I'm only interested in basic functions, such as reading last commits (name of commiter, commit note, date), displaying and traversing branches...

Thanks, ANaimi

share|improve this question
Here's a good article on the subject: git-scm.com/book/en/Git-Internals-Git-Objects – Fordi Nov 7 '12 at 18:56

4 Answers

You may also want to check out the Cgit project since they've done something similar (except they build their own git library -- also to avoid running git directly).

There's JGit, a pure Java implementation, that may be useful to you.

share|improve this answer

Try also glip, a pure php implementation of git, which was extracted from eWiki.

share|improve this answer

I think that best start in such case could be Interfaces Frontends And Tools page on Git Wiki.
You can find there link to eWiki (github) which supposedly uses native (in PHP) access to Git.

share|improve this answer
Yes actually that's what i'm doing right now. Looking at eWiki's code. – ANaimi Mar 25 '09 at 6:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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