https://github.com/git/git
Revision ae09ff2e70c80414fe778f8599fae093f658a275 authored by Sohom Datta on 05 October 2020, 07:58:26 UTC, committed by Sohom on 03 May 2023, 21:32:56 UTC
Explain to users that the step to untrack a file will not also prevent them
from getting added in the future.

Signed-off-by: Sohom Datta <sohom.datta@learner.manipal.edu>
1 parent 69c7866
Raw File
Tip revision: ae09ff2e70c80414fe778f8599fae093f658a275 authored by Sohom Datta on 05 October 2020, 07:58:26 UTC
docs: clarify git rm --cached function in gitignore note
Tip revision: ae09ff2
oidtree.h
#ifndef OIDTREE_H
#define OIDTREE_H

#include "cbtree.h"
#include "hash.h"
#include "mem-pool.h"

struct oidtree {
	struct cb_tree tree;
	struct mem_pool mem_pool;
};

void oidtree_init(struct oidtree *);
void oidtree_clear(struct oidtree *);
void oidtree_insert(struct oidtree *, const struct object_id *);
int oidtree_contains(struct oidtree *, const struct object_id *);

typedef enum cb_next (*oidtree_iter)(const struct object_id *, void *data);
void oidtree_each(struct oidtree *, const struct object_id *,
			size_t oidhexsz, oidtree_iter, void *data);

#endif /* OIDTREE_H */
back to top