我正试图重写存在且非常古老的git
GUI前端-只是为了好玩。
这个想法是将git
个外部流程调用替换为libgit2
个库方法。
但是,看起来它仍然缺少一些基本的git功能。
我目前的痛苦是git status
:
eraxillanmac:test eraxillan$ git status
On branch master
Your branch is up to date with 'origin/master'.
...
我可以使用libgit2
:official example
但是我如何得到这个字符串?
Your branch is up to date with 'origin/master'.
我怀疑我需要使用remote
API的fetch
/ libgit2
组,但是仍然不知道如何使用。
谢谢!