cppgit2
cppgit2 copied to clipboard
Git for Modern C++ (A libgit2 Wrapper Library)
Hey, I would like to report that the memory management in this library is completely broken. ## Examples ### repository::open ```cpp repository repository::open(const std::string &path) { repository result(nullptr); if (git_repository_open(&result.c_ptr_,...
when trying to debug my application, I was required to copy git2.dll and libgit2_clar.exe into my working directory so they are in view of my program. However now when I...
Hello, your [example about git add and git commit](https://github.com/p-ranav/cppgit2#add-and-commit-a-file-git-add-git-commit) only works with non-existing repo. Trying to launch it against pre-cloned one leads to ``` terminate called after throwing an instance...
Hello, I'm having issues staging all files in repo (similar to `git add .`) What I see in stdout: ``` terminate called after throwing an instance of 'std::logic_error' what(): basic_string::_M_construct...