aboutsummaryrefslogtreecommitdiff
path: root/attr.h
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2009-04-18 00:17:58 +0200
committerJunio C Hamano <gitster@pobox.com>2009-04-17 21:05:49 -0700
commit4191e80a3e8ee0fa0b8f97f9fba81c3549813fd5 (patch)
tree858742124f9b96f7d3e29d6f548cae90a065f010 /attr.h
parentad94657fdb8b177b07d94887e1b5259f590f11a8 (diff)
downloadgit-4191e80a3e8ee0fa0b8f97f9fba81c3549813fd5.tar.gz
git-4191e80a3e8ee0fa0b8f97f9fba81c3549813fd5.tar.xz
attr: add GIT_ATTR_INDEX "direction"
This instructs attr mechanism, not to look into working .gitattributes at all. Needed by tools that does not handle working directory, such as "git archive". Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'attr.h')
-rw-r--r--attr.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/attr.h b/attr.h
index 3a2f4ec1a..69b5767eb 100644
--- a/attr.h
+++ b/attr.h
@@ -33,7 +33,8 @@ int git_checkattr(const char *path, int, struct git_attr_check *);
enum git_attr_direction {
GIT_ATTR_CHECKIN,
- GIT_ATTR_CHECKOUT
+ GIT_ATTR_CHECKOUT,
+ GIT_ATTR_INDEX,
};
void git_attr_set_direction(enum git_attr_direction, struct index_state *);