문제

I am working on an idea which would require parsing through an SVN commit log, something that I know git svn is capable of doing, but I would like to do it via code. Is libgit2sharp able to support this, or does it only handle "real" git?

도움이 되었습니까?

해결책

[...] something that I know git svn is capable of doing [...] Is libgit2sharp able to support this?

git svn features are not exposed by libgit2, the core library LibGit2Sharp relies on.

Although this might be implemented one day, it's not on the near future roadmap.

I am working on an idea which would require parsing through an SVN commit log

I'm not an expert in that field, but this looks like a common problem. Maybe re-implementing this parsing logic in C# wouldn't take that long.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top