Shortens shas for display in explorer UIs

This commit is contained in:
Eric Amodio
2017-03-17 19:07:31 -04:00
parent dad85b3c0a
commit 7c01f40b3c

View File

@@ -693,7 +693,7 @@ export class GitService extends Disposable {
private static _toReferenceGitContentUri(commit: GitCommit, scheme: DocumentSchemes, commitCount: number, data: IGitUriData) {
const pad = (n: number) => ('0000000' + n).slice(-('' + commitCount).length);
const ext = path.extname(data.fileName);
const uriPath = `${path.relative(commit.repoPath, data.fileName.slice(0, -ext.length))}/${commit.sha}${ext}`;
const uriPath = `${path.relative(commit.repoPath, data.fileName.slice(0, -ext.length))}/${commit.shortSha}${ext}`;
let message = commit.message;
if (message.length > 50) {