Skip to content

findObject

리포지토리에서 특정 Git 개체를 조회해요.

시그니처

ts
class Repository {
  findObject(oid: string): GitObject | null;
}

파라미터

  • oid필수 · string

    Git object ID(SHA1) to lookup.

반환 값

  • null | GitObject

    Git object. Returns null if the object does not exist.

MIT 라이선스에 따라 배포됩니다.