gh.repos("user","repo").git.commits.create({
:message => "message of commit",
:tree => "new_branch"
})
gh.repos("user", "repo").pulls.create({
:title=>"take my awesome code!",
:body=>"This code is so awesome. Let me tell you why...",
:base=>"master",
:head=>"new_branch"
})