File: for-each-ref.h

package info (click to toggle)
git 1%3A2.53.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 62,528 kB
  • sloc: ansic: 309,696; sh: 264,007; perl: 25,983; tcl: 21,896; makefile: 4,296; python: 3,452; javascript: 772; csh: 45; xml: 41
file content (26 lines) | stat: -rw-r--r-- 1,014 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef FOR_EACH_REF_H
#define FOR_EACH_REF_H

struct repository;

/*
 * Shared usage string for options common to git-for-each-ref(1)
 * and git-refs-list(1). The command-specific part (e.g., "git refs list ")
 * must be prepended by the caller.
 */
#define COMMON_USAGE_FOR_EACH_REF \
	"[--count=<count>] [--shell|--perl|--python|--tcl]\n" \
	"                         [(--sort=<key>)...] [--format=<format>]\n" \
	"                         [--include-root-refs] [--points-at=<object>]\n" \
	"                         [--merged[=<object>]] [--no-merged[=<object>]]\n" \
	"                         [--contains[=<object>]] [--no-contains[=<object>]]\n" \
	"                         [(--exclude=<pattern>)...] [--start-after=<marker>]\n" \
	"                         [ --stdin | (<pattern>...)]"

/*
 * The core logic for for-each-ref and its clones.
 */
int for_each_ref_core(int argc, const char **argv, const char *prefix,
		      struct repository *repo, const char *const *usage);

#endif /* FOR_EACH_REF_H */