()
| 200 | } |
| 201 | |
| 202 | func customCommands() []string { |
| 203 | cmds := []string{} |
| 204 | for n, c := range CmdRunner.All() { |
| 205 | if !c.GitExtension && !strings.HasPrefix(n, "--") { |
| 206 | cmds = append(cmds, n) |
| 207 | } |
| 208 | } |
| 209 | |
| 210 | sort.Strings(cmds) |
| 211 | |
| 212 | return cmds |
| 213 | } |
| 214 | |
| 215 | var helpText = ` |
| 216 | These GitHub commands are provided by hub: |
no test coverage detected
searching dependent graphs…