Rahman

Results 3 issues of Rahman

Please someone tell me function equal to `git mv`

Trying adding file with IndexEntry, this my way: ``` id = repo.create_blob('foo bar') entry = pygit2.IndexEntry('zend2.txt', id, pygit2.GIT_FILEMODE_BLOB_EXECUTABLE) repo.index.add(entry) repo.index.write() ``` But with `git status` return this. ``` On branch...

I read **[code here](https://github.com/libgit2/pygit2/blob/4ae5420b15c613a151043b5bd52ebd4b44329476/pygit2/repository.py#L1223)** and found each create new branch required a commit. ```python def create(self, name, commit, force=False): return self._repository.create_branch(name, commit, force) ``` How create new branch without commit?