I am invoking the Git executable from my Java program using the process builder class and running various git commands. Java program is being run from the command prompt. However, I'm not finding a way to extract only a particular part of the output.

link|improve this question
What is that particular part.? – RanRag Jan 20 at 13:06
See for example after doing a commit. I use the gitdiff command to see the changes made to a repository. I only need to extract the changed part, whereas the output of gitdiff contains previous as well as current versions. – HelloWorld Jan 20 at 13:16
2  
Git is not written in Python – basszero Jan 20 at 13:19
Sorry for posting ill informed statements. But that still does not answer my question. – HelloWorld Jan 20 at 13:42
feedback

3 Answers

up vote 5 down vote accepted

Use JGit or other Java Git library.

link|improve this answer
All the functionalities of git are working. Say I want to add a new functionality to gitdiff which extracts the newly added lines of code, how do I implement that? – HelloWorld Jan 20 at 13:27
Is it not possible to somehow do this without using those libraries? – HelloWorld Jan 20 at 13:40
Sorry, I cannot answer this particular question. I recommend using a java libraries because the error handling (which is very important because you will receive java exceptions, which is more useful than parsing output of streams). – fiction Jan 20 at 13:44
feedback

I would assume you use a StreamGobbler thread to get the input.
Just put some logic in there that filters the output.

link|improve this answer
No. I just pass the command gitdiff as an argument. Whose output I see in the gitbash/command line. Can u throw some light on how to filter the ouput? – HelloWorld Jan 20 at 13:22
What logic can be applied to filter an output which does not follow a pattern? – HelloWorld Jan 20 at 14:12
feedback

like the others I would recommend the use of a java library, JGit allows many low-level operations if you need something very precise.

But maybe the Git command you are looking for is : "git diff commit_parent commit -U0" giving only the changes and no context.

You can also read the manual: "git help diff", you will find what Git offers.

But once again, I do not think it is a better idea to use a java Git library: what if the Git developers decide to change the output format tomorrow? Will you need to start over your program?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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