mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-02-16 18:48:45 -05:00
Adds parent sha parsing
This commit is contained in:
@@ -13,6 +13,8 @@ interface ILogEntry {
|
|||||||
committer?: string;
|
committer?: string;
|
||||||
committerDate?: string;
|
committerDate?: string;
|
||||||
|
|
||||||
|
parentSha?: string;
|
||||||
|
|
||||||
fileName?: string;
|
fileName?: string;
|
||||||
originalFileName?: string;
|
originalFileName?: string;
|
||||||
fileStatuses?: { status: GitFileStatus, fileName: string, originalFileName: string }[];
|
fileStatuses?: { status: GitFileStatus, fileName: string, originalFileName: string }[];
|
||||||
@@ -70,6 +72,10 @@ export class GitLogParserEnricher implements IGitEnricher<IGitLog> {
|
|||||||
// entry.committerDate = lineParts.slice(1).join(' ').trim();
|
// entry.committerDate = lineParts.slice(1).join(' ').trim();
|
||||||
// break;
|
// break;
|
||||||
|
|
||||||
|
case 'parent':
|
||||||
|
entry.parentSha = lineParts.slice(1).join(' ').trim();
|
||||||
|
break;
|
||||||
|
|
||||||
case 'summary':
|
case 'summary':
|
||||||
entry.summary = lineParts.slice(1).join(' ').trim();
|
entry.summary = lineParts.slice(1).join(' ').trim();
|
||||||
while (++position < lines.length) {
|
while (++position < lines.length) {
|
||||||
@@ -209,8 +215,10 @@ export class GitLogParserEnricher implements IGitEnricher<IGitLog> {
|
|||||||
|
|
||||||
if (recentCommit) {
|
if (recentCommit) {
|
||||||
recentCommit.previousSha = commit.sha;
|
recentCommit.previousSha = commit.sha;
|
||||||
|
|
||||||
// If the commit sha's match (merge commit), just forward it along
|
// If the commit sha's match (merge commit), just forward it along
|
||||||
commit.nextSha = commit.sha !== recentCommit.sha ? recentCommit.sha : recentCommit.nextSha;
|
commit.nextSha = commit.sha !== recentCommit.sha ? recentCommit.sha : recentCommit.nextSha;
|
||||||
|
|
||||||
// Only add a filename if this is a file log
|
// Only add a filename if this is a file log
|
||||||
if (type === 'file') {
|
if (type === 'file') {
|
||||||
recentCommit.previousFileName = commit.originalFileName || commit.fileName;
|
recentCommit.previousFileName = commit.originalFileName || commit.fileName;
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ export * from './enrichers/logParserEnricher';
|
|||||||
let git: IGit;
|
let git: IGit;
|
||||||
const UncommittedRegex = /^[0]+$/;
|
const UncommittedRegex = /^[0]+$/;
|
||||||
|
|
||||||
const DefaultLogParams = [`log`, `--name-status`, `--full-history`, `-m`, `--date=iso8601-strict`, `--format=%H -%nauthor %an%nauthor-date %ai%ncommitter %cn%ncommitter-date %ci%nsummary %B%nfilename ?`];
|
const DefaultLogParams = [`log`, `--name-status`, `--full-history`, `-m`, `--date=iso8601-strict`, `--format=%H -%nauthor %an%nauthor-date %ai%ncommitter %cn%ncommitter-date %ci%nparent %P%nsummary %B%nfilename ?`];
|
||||||
|
|
||||||
async function gitCommand(cwd: string, ...args: any[]) {
|
async function gitCommand(cwd: string, ...args: any[]) {
|
||||||
try {
|
try {
|
||||||
|
|||||||
Reference in New Issue
Block a user