```sh
handle = gitignore_path_array path
```
Returns an array handle containing all path entries found from the provided root path that should be included based on the gitignore definitions.
The root path.
The array handle.
```sh
handle = gitignore_path_array ./src
for path in ${handle}
end
```