Skip to content

Commit

Permalink
Fix for issues gitless-vcs/gitless#195
Browse files Browse the repository at this point in the history
Needs e2e test
  • Loading branch information
goldstar611 committed Feb 21, 2022
1 parent 69691d5 commit a2b1ff1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions gitless/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -774,6 +774,8 @@ def __getattr__(self, name):
# `git rm` and then created file with same name).
pygit2.GIT_STATUS_WT_NEW | pygit2.GIT_STATUS_INDEX_DELETED: (
GL_STATUS_TRACKED, True, True, True, False),
pygit2.GIT_STATUS_INDEX_NEW | pygit2.GIT_STATUS_WT_DELETED: (
GL_STATUS_TRACKED, True, False, True, False),

### WT_MODIFIED | INDEX_* ###
pygit2.GIT_STATUS_WT_MODIFIED | pygit2.GIT_STATUS_INDEX_NEW: (
Expand Down

0 comments on commit a2b1ff1

Please sign in to comment.