libgit2sharp remove remote branch

前端 未结 2 1460
长发绾君心
长发绾君心 2021-01-20 22:05

I want to delete a branch locally and remote. My code:

using (var repository = new Repository(path))
{
    var remote = repository.Network.Remotes[\"origin\         


        
2条回答
  •  梦毁少年i
    2021-01-20 22:33

    This is failing with a 401 Unauthorized error because it is unauthorized. To fix this error, you just need to pass the options containing your credentials to the Push() method:

    repository.Network.Push(remote, pushRefSpec, options)
    

    That fixed this problem for me.

提交回复
热议问题