(key)
| 1093 | |
| 1094 | |
| 1095 | def gitConfigList(key): |
| 1096 | if key not in _gitConfig: |
| 1097 | s = read_pipe(["git", "config", "--get-all", key], ignore_error=True) |
| 1098 | _gitConfig[key] = s.strip().splitlines() |
| 1099 | if _gitConfig[key] == ['']: |
| 1100 | _gitConfig[key] = [] |
| 1101 | return _gitConfig[key] |
| 1102 | |
| 1103 | def fullP4Ref(incomingRef, importIntoRemotes=True): |
| 1104 | """Standardize a given provided p4 ref value to a full git ref: |
no test coverage detected