I have an external process that applies changes to files part of a local Git repository initially cloned through libgit2sharp. I would like to perform - through libgit2sharp - the equivalent of the command git add *
, followed by git commit -m "Hello World"
. The documentation of the Repository
class is thin on this.
How can it be done?