diff options
author | HampusM <hampus@hampusmat.com> | 2021-08-05 15:18:39 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2021-08-05 15:18:39 +0200 |
commit | 22bf491be5f25bccf779be53b2ad37836f0850b8 (patch) | |
tree | 50cce93d9bb5d1f0cb8255335c8768aa36177104 /packages/server/src/git/repository.ts | |
parent | 9f7c9103ae6ca7c3127b44a966300a8ea62b3454 (diff) |
The log API endpoint has a branch parameter & fixed the tree entry latest commit method
Diffstat (limited to 'packages/server/src/git/repository.ts')
-rw-r--r-- | packages/server/src/git/repository.ts | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/packages/server/src/git/repository.ts b/packages/server/src/git/repository.ts index ccc8bcc..411c4fb 100644 --- a/packages/server/src/git/repository.ts +++ b/packages/server/src/git/repository.ts @@ -7,7 +7,7 @@ import { Commit } from "./commit"; import { FastifyReply } from "fastify"; import { Tag } from "./tag"; import { Tree } from "./tree"; -import { BranchError, createError, RepositoryError } from "./error"; +import { createError, RepositoryError } from "./error"; /** * Returns the full name of a git repository @@ -86,7 +86,8 @@ export class Repository { */ public async commits(): Promise<Commit[]> { const walker = NodeGitRevwalk.create(this.ng_repository); - walker.pushHead(); + + walker.pushRef(`refs/heads/${this._branch}`); return Promise.all((await walker.getCommitsUntil(() => true)).map(commit => new Commit(this, commit))); } @@ -170,7 +171,7 @@ export class Repository { if(branch) { if(!await Branch.lookupExists(ng_repository, branch)) { - throw(createError(BranchError, 404, "Branch not found!")); + throw(createError(RepositoryError, 404, "Branch not found!")); } } |