summaryrefslogtreecommitdiff
path: root/include/git2/status.h
diff options
context:
space:
mode:
authorRussell Belfer <arrbee@arrbee.com>2012-03-22 09:17:34 -0700
committerRussell Belfer <arrbee@arrbee.com>2012-03-22 09:17:34 -0700
commit95340398a1821bd19da1bfe459ba1f375ed89404 (patch)
tree92274fa06af3b9f239f4c530b9e66fe6e86dfe99 /include/git2/status.h
parenta48ea31d69a76d6b398d3a1e522a1c7363a9b92a (diff)
downloadlibgit2-95340398a1821bd19da1bfe459ba1f375ed89404.tar.gz
Adding new tests for new status command
This is a work in progress. This adds two new sets of tests, the issue_592 tests from @nulltoken's pull request #601 and some new tests for submodules. The submodule tests still have issues where the status is not reported correctly. That needs to be fixed before merge.
Diffstat (limited to 'include/git2/status.h')
-rw-r--r--include/git2/status.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/git2/status.h b/include/git2/status.h
index 4dc80b93a..339052933 100644
--- a/include/git2/status.h
+++ b/include/git2/status.h
@@ -31,8 +31,7 @@ GIT_BEGIN_DECL
#define GIT_STATUS_WT_MODIFIED (1 << 4)
#define GIT_STATUS_WT_DELETED (1 << 5)
-#define GIT_STATUS_IGNORED (1 << 6)
-#define GIT_STATUS_WT_UNTRACKED (1 << 7)
+#define GIT_STATUS_IGNORED (1 << 6)
/**
* Gather file statuses and run a callback for each one.