diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2013-08-16 16:52:02 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-08-18 13:00:17 -0700 |
commit | 3125fe528b65c1e4a4f5f934d056af342ab5472d (patch) | |
tree | 5cae1f2f397db748cef9e2335dc20deae2c63812 /commit.h | |
parent | 2c2b6646c2723459dbd334c7ced6f77ffb0d596e (diff) | |
download | git-3125fe528b65c1e4a4f5f934d056af342ab5472d.tar.gz |
move setup_alternate_shallow and write_shallow_commits to shallow.c
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 'commit.h')
-rw-r--r-- | commit.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -198,6 +198,9 @@ extern struct commit_list *get_shallow_commits(struct object_array *heads, int depth, int shallow_flag, int not_shallow_flag); extern void check_shallow_file_for_update(void); extern void set_alternate_shallow_file(const char *path); +extern int write_shallow_commits(struct strbuf *out, int use_pack_protocol); +extern void setup_alternate_shallow(struct lock_file *shallow_lock, + const char **alternate_shallow_file); int is_descendant_of(struct commit *, struct commit_list *); int in_merge_bases(struct commit *, struct commit *); |