branchRef generates the fully qualified git reference for the given branch name.
(name string)
| 90 | |
| 91 | // branchRef generates the fully qualified git reference for the given branch name. |
| 92 | func branchRef(name string) string { |
| 93 | return "refs/heads/" + name |
| 94 | } |
| 95 | |
| 96 | // getTree generates the tree to commit based on the given files and the commit |
| 97 | // of the ref you got in getRef. |
no outgoing calls
no test coverage detected
searching dependent graphs…