diff options
author | Junio C Hamano <junkio@cox.net> | 2007-03-31 23:27:41 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-04-03 23:44:32 -0700 |
commit | 5e7f56ac33f7a5583f9fa4e0b6088709fea7a6f8 (patch) | |
tree | a0a6896849d34635f947fabc82d8400c473f28b4 /cache.h | |
parent | 30ca07a249744e57163c02250fca420cea364299 (diff) | |
download | git-5e7f56ac33f7a5583f9fa4e0b6088709fea7a6f8.tar.gz git-5e7f56ac33f7a5583f9fa4e0b6088709fea7a6f8.tar.xz |
git-read-tree --index-output=<file>
This corrects the interface mistake of the previous one, and
gives a command line parameter to the only plumbing command that
currently needs it: "git-read-tree".
We can add the calls to set_alternate_index_output() to other
plumbing commands that update the index if/when needed.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -147,7 +147,6 @@ enum object_type { #define DEFAULT_GIT_DIR_ENVIRONMENT ".git" #define DB_ENVIRONMENT "GIT_OBJECT_DIRECTORY" #define INDEX_ENVIRONMENT "GIT_INDEX_FILE" -#define INDEX_OUTPUT_ENVIRONMENT "_GIT_INDEX_OUTPUT" #define GRAFT_ENVIRONMENT "GIT_GRAFT_FILE" #define TEMPLATE_DIR_ENVIRONMENT "GIT_TEMPLATE_DIR" #define CONFIG_ENVIRONMENT "GIT_CONFIG" @@ -216,6 +215,7 @@ extern int commit_lock_file(struct lock_file *); extern int hold_locked_index(struct lock_file *, int); extern int commit_locked_index(struct lock_file *); +extern void set_alternate_index_output(const char *); extern void rollback_lock_file(struct lock_file *); extern int delete_ref(const char *, unsigned char *sha1); |