Safe Haskell | None |
---|---|
Language | Haskell2010 |
The underlying tree of SHA1s and files that make up a git repo. The API is described on http://developer.github.com/v3/git/trees/.
- tree :: Name GithubOwner -> Name Repo -> Name Tree -> IO (Either Error Tree)
- tree' :: Maybe GithubAuth -> Name GithubOwner -> Name Repo -> Name Tree -> IO (Either Error Tree)
- treeR :: Name GithubOwner -> Name Repo -> Name Tree -> GithubRequest k Tree
- nestedTree :: Name GithubOwner -> Name Repo -> Name Tree -> IO (Either Error Tree)
- nestedTree' :: Maybe GithubAuth -> Name GithubOwner -> Name Repo -> Name Tree -> IO (Either Error Tree)
- nestedTreeR :: Name GithubOwner -> Name Repo -> Name Tree -> GithubRequest k Tree
- module Github.Data
Documentation
tree :: Name GithubOwner -> Name Repo -> Name Tree -> IO (Either Error Tree) Source
A tree for a SHA1.
tree "thoughtbot" "paperclip" "fe114451f7d066d367a1646ca7ac10e689b46844"
tree' :: Maybe GithubAuth -> Name GithubOwner -> Name Repo -> Name Tree -> IO (Either Error Tree) Source
A tree for a SHA1.
tree (Just ("github-username", "github-password")) "thoughtbot" "paperclip" "fe114451f7d066d367a1646ca7ac10e689b46844"
treeR :: Name GithubOwner -> Name Repo -> Name Tree -> GithubRequest k Tree Source
Get a Tree. See https://developer.github.com/v3/git/trees/#get-a-tree
nestedTree :: Name GithubOwner -> Name Repo -> Name Tree -> IO (Either Error Tree) Source
A recursively-nested tree for a SHA1.
nestedTree "thoughtbot" "paperclip" "fe114451f7d066d367a1646ca7ac10e689b46844"
nestedTree' :: Maybe GithubAuth -> Name GithubOwner -> Name Repo -> Name Tree -> IO (Either Error Tree) Source
A recursively-nested tree for a SHA1.
nestedTree' (Just ("github-username", "github-password")) "thoughtbot" "paperclip" "fe114451f7d066d367a1646ca7ac10e689b46844"
nestedTreeR :: Name GithubOwner -> Name Repo -> Name Tree -> GithubRequest k Tree Source
Get a Tree Recursively. See https://developer.github.com/v3/git/trees/#get-a-tree-recursively
module Github.Data