.gitignore: "git-verify-commit" is a generated file
[git.git] / Documentation / technical / api-setup.txt
blob540e45568990f89fceb50ad619ca8402e9925983
1 setup API
2 =========
4 Talk about
6 * setup_git_directory()
7 * setup_git_directory_gently()
8 * is_inside_git_dir()
9 * is_inside_work_tree()
10 * setup_work_tree()
12 (Dscho)
14 Pathspec
15 --------
17 See glossary-context.txt for the syntax of pathspec. In memory, a
18 pathspec set is represented by "struct pathspec" and is prepared by
19 parse_pathspec(). This function takes several arguments:
21 - magic_mask specifies what features that are NOT supported by the
22   following code. If a user attempts to use such a feature,
23   parse_pathspec() can reject it early.
25 - flags specifies other things that the caller wants parse_pathspec to
26   perform.
28 - prefix and args come from cmd_* functions
30 get_pathspec() is obsolete and should never be used in new code.
32 parse_pathspec() helps catch unsupported features and reject them
33 politely. At a lower level, different pathspec-related functions may
34 not support the same set of features. Such pathspec-sensitive
35 functions are guarded with GUARD_PATHSPEC(), which will die in an
36 unfriendly way when an unsupported feature is requested.
38 The command designers are supposed to make sure that GUARD_PATHSPEC()
39 never dies. They have to make sure all unsupported features are caught
40 by parse_pathspec(), not by GUARD_PATHSPEC. grepping GUARD_PATHSPEC()
41 should give the designers all pathspec-sensitive codepaths and what
42 features they support.
44 A similar process is applied when a new pathspec magic is added. The
45 designer lifts the GUARD_PATHSPEC restriction in the functions that
46 support the new magic. At the same time (s)he has to make sure this
47 new feature will be caught at parse_pathspec() in commands that cannot
48 handle the new magic in some cases. grepping parse_pathspec() should
49 help.