mirror of
https://github.com/git/git.git
synced 2024-12-13 03:44:17 +08:00
08c46a499a
For the functions defined in read-cache.c, move their declarations from cache.h to a new header, read-cache-ll.h. Also move some related inline functions from cache.h to read-cache.h. The purpose of the read-cache-ll.h/read-cache.h split is that about 70% of the sites don't need the inline functions and the extra headers they include. Signed-off-by: Elijah Newren <newren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
25 lines
677 B
C
25 lines
677 B
C
#define USE_THE_INDEX_VARIABLE
|
|
#include "test-tool.h"
|
|
#include "cache.h"
|
|
#include "lockfile.h"
|
|
#include "read-cache-ll.h"
|
|
#include "repository.h"
|
|
#include "setup.h"
|
|
#include "tree.h"
|
|
#include "cache-tree.h"
|
|
|
|
int cmd__scrap_cache_tree(int ac UNUSED, const char **av UNUSED)
|
|
{
|
|
struct lock_file index_lock = LOCK_INIT;
|
|
|
|
setup_git_directory();
|
|
repo_hold_locked_index(the_repository, &index_lock, LOCK_DIE_ON_ERROR);
|
|
if (repo_read_index(the_repository) < 0)
|
|
die("unable to read index file");
|
|
cache_tree_free(&the_index.cache_tree);
|
|
the_index.cache_tree = NULL;
|
|
if (write_locked_index(&the_index, &index_lock, COMMIT_LOCK))
|
|
die("unable to write index file");
|
|
return 0;
|
|
}
|