mirror of
https://github.com/gosticks/SwiftGit2.git
synced 2025-10-16 11:55:34 +00:00
Stub some methods
This commit is contained in:
parent
2770a1083b
commit
9d9023a3bd
@ -221,4 +221,34 @@ final public class Repository {
|
|||||||
pointer.dealloc(1)
|
pointer.dealloc(1)
|
||||||
return success(value)
|
return success(value)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// MARK: - Reference Lookups
|
||||||
|
|
||||||
|
public func referenceWithName(name: String) -> Result<Reference> {
|
||||||
|
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<Branch> {
|
||||||
|
return failure()
|
||||||
|
}
|
||||||
|
|
||||||
|
public func allTags() -> Result<[TagReference]> {
|
||||||
|
return failure()
|
||||||
|
}
|
||||||
|
|
||||||
|
public func tagWithName(name: String) -> Result<TagReference> {
|
||||||
|
return failure()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user