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.
feedback
|
|
Use JGit or other Java Git library. | |||||||
feedback
|
|
I would assume you use a | |||||
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? | |||
|
feedback
|