Skip to content

Commit 4cd4f7b

Browse files
committed
svn log revision is now HEAD:1 fixes #241
1 parent 928c68f commit 4cd4f7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/svnRepository.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ export class Repository {
361361

362362
async log() {
363363
const logLength = configuration.get<string>("log.length") || "50";
364-
const result = await this.exec(["log", "--limit", logLength]);
364+
const result = await this.exec(["log", "-r", "HEAD:1", "--limit", logLength]);
365365

366366
return result.stdout;
367367
}

0 commit comments

Comments
 (0)