Joey Tobiska
Joey Tobiska
Steps to reproduce: ``` >>> import pygit2 >>> repo = pygit2.init_repository(".") >>> repo.remotes.create("origin", "https://github.com/libgit2/pygit2.git") >>> repo.remotes.add_fetch("origin", "refs/heads/master:refs/remotes/origin/master") >>> repo.remotes.add_fetch("origin", "refs/tags/*:refs/tags/*") >>> repo.remotes.delete("origin") _pygit2.GitError, entry is not unique due to being...
I've recently run into some trouble working with fetch/pull refspecs in pygit2 due to libgit2 features that haven't been exposed to python. The main issues I've encountered are: - There's...