How to do git log -L with jGit?
I want to find the commit history of particular lines using jGit. This can be done in CLI using git log -L. How to do this in jGit?
git jgit
add a comment |
I want to find the commit history of particular lines using jGit. This can be done in CLI using git log -L. How to do this in jGit?
git jgit
add a comment |
I want to find the commit history of particular lines using jGit. This can be done in CLI using git log -L. How to do this in jGit?
git jgit
I want to find the commit history of particular lines using jGit. This can be done in CLI using git log -L. How to do this in jGit?
git jgit
git jgit
edited Nov 24 '18 at 22:30
centic
11.5k53791
11.5k53791
asked Nov 14 '18 at 7:59
Arshak AnjArshak Anj
103
103
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
The API lists explicitly all available flags, and it seems unfortunately, there is no implementation for the line range option, -L
(at this time). git log
is much more flexible than the jgit
API.
The best you could do is to use the .addPath('/path/to/file')
method before the .call()
to narrow things down, and then calling DiffCommand
between each pair of returned commits on the file using the setPathFilter
- Finally you have to parse the result yourself to see if your specific line was touched.
So, is there any way to get the commit history of a line in jGit?
– Arshak Anj
Nov 14 '18 at 9:59
@ArshakAnj I am afraid you would have to do things yourself.addPath
will allow you to focus on a file, but then you would actually have to parse yourself if your line was changed in each commit, for example by usingDiffCommand
and parsing it.
– kabanus
Nov 14 '18 at 10:02
I will add that to the answer.
– kabanus
Nov 14 '18 at 10:02
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53295431%2fhow-to-do-git-log-l-with-jgit%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The API lists explicitly all available flags, and it seems unfortunately, there is no implementation for the line range option, -L
(at this time). git log
is much more flexible than the jgit
API.
The best you could do is to use the .addPath('/path/to/file')
method before the .call()
to narrow things down, and then calling DiffCommand
between each pair of returned commits on the file using the setPathFilter
- Finally you have to parse the result yourself to see if your specific line was touched.
So, is there any way to get the commit history of a line in jGit?
– Arshak Anj
Nov 14 '18 at 9:59
@ArshakAnj I am afraid you would have to do things yourself.addPath
will allow you to focus on a file, but then you would actually have to parse yourself if your line was changed in each commit, for example by usingDiffCommand
and parsing it.
– kabanus
Nov 14 '18 at 10:02
I will add that to the answer.
– kabanus
Nov 14 '18 at 10:02
add a comment |
The API lists explicitly all available flags, and it seems unfortunately, there is no implementation for the line range option, -L
(at this time). git log
is much more flexible than the jgit
API.
The best you could do is to use the .addPath('/path/to/file')
method before the .call()
to narrow things down, and then calling DiffCommand
between each pair of returned commits on the file using the setPathFilter
- Finally you have to parse the result yourself to see if your specific line was touched.
So, is there any way to get the commit history of a line in jGit?
– Arshak Anj
Nov 14 '18 at 9:59
@ArshakAnj I am afraid you would have to do things yourself.addPath
will allow you to focus on a file, but then you would actually have to parse yourself if your line was changed in each commit, for example by usingDiffCommand
and parsing it.
– kabanus
Nov 14 '18 at 10:02
I will add that to the answer.
– kabanus
Nov 14 '18 at 10:02
add a comment |
The API lists explicitly all available flags, and it seems unfortunately, there is no implementation for the line range option, -L
(at this time). git log
is much more flexible than the jgit
API.
The best you could do is to use the .addPath('/path/to/file')
method before the .call()
to narrow things down, and then calling DiffCommand
between each pair of returned commits on the file using the setPathFilter
- Finally you have to parse the result yourself to see if your specific line was touched.
The API lists explicitly all available flags, and it seems unfortunately, there is no implementation for the line range option, -L
(at this time). git log
is much more flexible than the jgit
API.
The best you could do is to use the .addPath('/path/to/file')
method before the .call()
to narrow things down, and then calling DiffCommand
between each pair of returned commits on the file using the setPathFilter
- Finally you have to parse the result yourself to see if your specific line was touched.
edited Nov 14 '18 at 10:04
answered Nov 14 '18 at 8:11
kabanuskabanus
11.5k31339
11.5k31339
So, is there any way to get the commit history of a line in jGit?
– Arshak Anj
Nov 14 '18 at 9:59
@ArshakAnj I am afraid you would have to do things yourself.addPath
will allow you to focus on a file, but then you would actually have to parse yourself if your line was changed in each commit, for example by usingDiffCommand
and parsing it.
– kabanus
Nov 14 '18 at 10:02
I will add that to the answer.
– kabanus
Nov 14 '18 at 10:02
add a comment |
So, is there any way to get the commit history of a line in jGit?
– Arshak Anj
Nov 14 '18 at 9:59
@ArshakAnj I am afraid you would have to do things yourself.addPath
will allow you to focus on a file, but then you would actually have to parse yourself if your line was changed in each commit, for example by usingDiffCommand
and parsing it.
– kabanus
Nov 14 '18 at 10:02
I will add that to the answer.
– kabanus
Nov 14 '18 at 10:02
So, is there any way to get the commit history of a line in jGit?
– Arshak Anj
Nov 14 '18 at 9:59
So, is there any way to get the commit history of a line in jGit?
– Arshak Anj
Nov 14 '18 at 9:59
@ArshakAnj I am afraid you would have to do things yourself.
addPath
will allow you to focus on a file, but then you would actually have to parse yourself if your line was changed in each commit, for example by using DiffCommand
and parsing it.– kabanus
Nov 14 '18 at 10:02
@ArshakAnj I am afraid you would have to do things yourself.
addPath
will allow you to focus on a file, but then you would actually have to parse yourself if your line was changed in each commit, for example by using DiffCommand
and parsing it.– kabanus
Nov 14 '18 at 10:02
I will add that to the answer.
– kabanus
Nov 14 '18 at 10:02
I will add that to the answer.
– kabanus
Nov 14 '18 at 10:02
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53295431%2fhow-to-do-git-log-l-with-jgit%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown