On Tue, Nov 11, 2008 at 21:44, Farrukh Najmi <farrukh@xxxxxxxxxxxxxxxxxxxxx> wrote: > Hi all, Hello, > I am git newbie and looking to use jgit in a servlet endpoint. Sounds interesting. I have been thinking about how hard it would be to write a very simpe jgitweb kind of thing and am very interested to hear more about your experiences. > Where can I find a public maven repo for gjit? It seems there is one > somewhere because of the following file in src tree: I would also like to have a public available maven repository for JGit. If Shawn or Robin acks, I can look into hosting one in the SVN area of the Google Code project page. Given the lack of a real release cycle it probably only makes sense to have a snapshot repository. > Now I am wondering where to begin to learn how to do the equivalent of the > following commands via the gjit Java API: > > * git add /file/ > * git rm /file/ > * git mv /file > * Whatever is the git way to get a specific version of a file JGit currently has two APIs for working with the index, which will allow you to add, remove and move data around in the tree. In nbgit I ended up using GitIndex, which I found easier to figure out. As I understand it, in the long run you want to use the DirCache API, but it is still a work in progress. > I am hoping that there aremore docs, samples, tutorials etc. somewhere that > I am missing. Thanks for any help you can provide. Some pointers or code > fragments would be terrific. I started working on a tutorial for JGit, but didn't get very far so it mostly consists of stub pages. - http://code.google.com/docreader/#p=egit&s=egit&t=JGitTutorial I have been working on moving the tutorial to maven project before starting to write the more code heavy topics. This would make it possible to include code snippets in the tutorial, while also allowing to compile and test the examples. -- Jonas Fonseca -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html