MCPcopy Create free account
hub / github.com/cli/cli / firstLine

Function firstLine

git/client.go:985–990  ·  view source on GitHub ↗
(output []byte)

Source from the content-addressed store, hash-verified

983}
984
985func firstLine(output []byte) string {
986 if i := bytes.IndexAny(output, "\n"); i >= 0 {
987 return string(output)[0:i]
988 }
989 return string(output)
990}
991
992func parseCloneArgs(extraArgs []string) (args []string, target string) {
993 args = extraArgs

Callers 7

CurrentBranchMethod · 0.85
ConfigMethod · 0.85
PushRevisionMethod · 0.85
ToplevelDirMethod · 0.85
GitDirMethod · 0.85
PathFromRootMethod · 0.85
RemoteURLMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected