An GitNode is a node that reads a Taskfile from a remote location via Git.
| 21 | |
| 22 | // An GitNode is a node that reads a Taskfile from a remote location via Git. |
| 23 | type GitNode struct { |
| 24 | *baseNode |
| 25 | url *url.URL |
| 26 | rawUrl string |
| 27 | ref string |
| 28 | path string |
| 29 | } |
| 30 | |
| 31 | type gitRepoCache struct { |
| 32 | mu sync.Mutex // Protects the locks map |
nothing calls this directly
no outgoing calls
no test coverage detected