mirror of
https://github.com/git/git.git
synced 2024-11-02 07:17:58 +01:00
efca578eec
* jc/grep: (22 commits) Fix silly typo in new builtin grep builtin-grep: unparse more command line options. builtin-grep: use external grep when we can take advantage of it builtin-grep: -F (--fixed-strings) builtin-grep: -w fix builtin-grep: typofix builtin-grep: tighten argument parsing. builtin-grep: documentation Teach -f <file> option to builtin-grep. builtin-grep: -L (--files-without-match). builtin-grep: binary files -a and -I builtin-grep: terminate correctly at EOF builtin-grep: tighten path wildcard vs tree traversal. builtin-grep: support -w (--word-regexp). builtin-grep: support -c (--count). builtin-grep: allow more than one patterns. builtin-grep: allow -<n> and -[ABC]<n> notation for context lines. builtin-grep: printf %.*s length is int, not ptrdiff_t. builtin-grep: do not use setup_revisions() builtin-grep: support '-l' option. ...
28 lines
883 B
C
28 lines
883 B
C
#ifndef BUILTIN_H
|
|
#define BUILTIN_H
|
|
|
|
#ifndef PATH_MAX
|
|
# define PATH_MAX 4096
|
|
#endif
|
|
|
|
extern const char git_version_string[];
|
|
|
|
void cmd_usage(int show_all, const char *exec_path, const char *fmt, ...)
|
|
#ifdef __GNUC__
|
|
__attribute__((__format__(__printf__, 3, 4), __noreturn__))
|
|
#endif
|
|
;
|
|
|
|
extern int cmd_help(int argc, const char **argv, char **envp);
|
|
extern int cmd_version(int argc, const char **argv, char **envp);
|
|
|
|
extern int cmd_whatchanged(int argc, const char **argv, char **envp);
|
|
extern int cmd_show(int argc, const char **argv, char **envp);
|
|
extern int cmd_log(int argc, const char **argv, char **envp);
|
|
extern int cmd_diff(int argc, const char **argv, char **envp);
|
|
extern int cmd_count_objects(int argc, const char **argv, char **envp);
|
|
|
|
extern int cmd_push(int argc, const char **argv, char **envp);
|
|
extern int cmd_grep(int argc, const char **argv, char **envp);
|
|
|
|
#endif
|