(path, directory string)
| 321 | } |
| 322 | |
| 323 | func isPathInDirectory(path, directory string) bool { |
| 324 | return directory == "." || strings.HasPrefix(path, directory+"/") |
| 325 | } |
| 326 | |
| 327 | // AddWithOptions file contents to the index, updates the index using the |
| 328 | // current content found in the working tree, to prepare the content staged for |
no outgoing calls
no test coverage detected
searching dependent graphs…