()
| 43 | } |
| 44 | |
| 45 | func init() { |
| 46 | descCmd.AddCommand(descBranchCmd) |
| 47 | addProjectFlag(descBranchCmd) |
| 48 | verifyMarkFlagRequired(descBranchCmd, "project") |
| 49 | } |
| 50 | |
| 51 | func descBranch(project, branch, out string) error { |
| 52 | git, err := newGitlabClient() |
nothing calls this directly
no test coverage detected