1
I'm developing a wrapper for LibGit2, the Git library.
And I come out with a problem:
Many GIT functions accept path lists, that is, a string
composed of a series of paths separated by a token,
that LibGit2 makes available to me. In my Linux, it is a colon (:
).
The issue appears when I ask me:
what if the path contains this token?
Can it be escaped someway? \:
or so?
Will it be supported out-of-the-box in Windows?
I know it's not common to have a directory containing :
in his
name, but as a wrapper I have to be prepared for this case.