diff --git a/SwiftGit2/Repository.swift b/SwiftGit2/Repository.swift index 4c73db2..683db43 100644 --- a/SwiftGit2/Repository.swift +++ b/SwiftGit2/Repository.swift @@ -221,4 +221,34 @@ final public class Repository { pointer.dealloc(1) return success(value) } + + // MARK: - Reference Lookups + + public func referenceWithName(name: String) -> Result { + return failure() + } + + public func allBranches() -> Result<[Branch]> { + return failure() + } + + public func localBranches() -> Result<[Branch]> { + return failure() + } + + public func remoteBranches() -> Result<[Branch]> { + return failure() + } + + public func branchWithName(name: String) -> Result { + return failure() + } + + public func allTags() -> Result<[TagReference]> { + return failure() + } + + public func tagWithName(name: String) -> Result { + return failure() + } }