Skip to content

Commit da9502f

Browse files
calvin-wan-googlegitster
authored andcommitted
treewide: remove unnecessary includes for wrapper.h
Signed-off-by: Calvin Wan <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 28aed75 commit da9502f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+0
-74
lines changed

apply.c

-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
#include "symlinks.h"
3838
#include "wildmatch.h"
3939
#include "ws.h"
40-
#include "wrapper.h"
4140

4241
struct gitdiff_data {
4342
struct strbuf *root;

builtin/am.c

-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444
#include "path.h"
4545
#include "repository.h"
4646
#include "pretty.h"
47-
#include "wrapper.h"
4847

4948
/**
5049
* Returns the length of the first line of msg.

builtin/bisect.c

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
#include "prompt.h"
1616
#include "quote.h"
1717
#include "revision.h"
18-
#include "wrapper.h"
1918

2019
static GIT_PATH_FUNC(git_path_bisect_terms, "BISECT_TERMS")
2120
static GIT_PATH_FUNC(git_path_bisect_expected_rev, "BISECT_EXPECTED_REV")

builtin/branch.c

-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
#include "worktree.h"
2929
#include "help.h"
3030
#include "commit-reach.h"
31-
#include "wrapper.h"
3231

3332
static const char * const builtin_branch_usage[] = {
3433
N_("git branch [<options>] [-r | -a] [--merged] [--no-merged]"),

builtin/bugreport.c

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
#include "diagnose.h"
1212
#include "object-file.h"
1313
#include "setup.h"
14-
#include "wrapper.h"
1514

1615
static void get_system_info(struct strbuf *sys_info)
1716
{

builtin/clone.c

-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@
4545
#include "hook.h"
4646
#include "bundle.h"
4747
#include "bundle-uri.h"
48-
#include "wrapper.h"
4948

5049
/*
5150
* Overall FIXMEs:

builtin/config.c

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
#include "setup.h"
1616
#include "strbuf.h"
1717
#include "worktree.h"
18-
#include "wrapper.h"
1918

2019
static const char *const builtin_config_usage[] = {
2120
N_("git config [<options>]"),

builtin/credential-cache.c

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
#include "parse-options.h"
44
#include "path.h"
55
#include "strbuf.h"
6-
#include "wrapper.h"
76
#include "write-or-die.h"
87

98
#ifndef NO_UNIX_SOCKETS

builtin/difftool.c

-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
#include "dir.h"
3333
#include "entry.h"
3434
#include "setup.h"
35-
#include "wrapper.h"
3635

3736
static int trust_exit_code;
3837

builtin/fast-import.c

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
#include "commit-reach.h"
2727
#include "khash.h"
2828
#include "date.h"
29-
#include "wrapper.h"
3029

3130
#define PACK_ID_BITS 16
3231
#define MAX_PACK_ID ((1<<PACK_ID_BITS)-1)

builtin/fmt-merge-msg.c

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
#include "fmt-merge-msg.h"
44
#include "gettext.h"
55
#include "parse-options.h"
6-
#include "wrapper.h"
76

87
static const char * const fmt_merge_msg_usage[] = {
98
N_("git fmt-merge-msg [-m <message>] [--log[=<n>] | --no-log] [--file <file>]"),

builtin/gc.c

-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@
4141
#include "hook.h"
4242
#include "setup.h"
4343
#include "trace2.h"
44-
#include "wrapper.h"
4544

4645
#define FAILED_RUN "failed to run %s"
4746

builtin/get-tar-commit-id.c

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
#include "commit.h"
66
#include "tar.h"
77
#include "quote.h"
8-
#include "wrapper.h"
98

109
static const char builtin_get_tar_commit_id_usage[] =
1110
"git get-tar-commit-id";

builtin/index-pack.c

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
#include "replace-object.h"
2626
#include "promisor-remote.h"
2727
#include "setup.h"
28-
#include "wrapper.h"
2928

3029
static const char index_pack_usage[] =
3130
"git index-pack [-v] [-o <index-file>] [--keep | --keep=<msg>] [--[no-]rev-index] [--verify] [--strict] (<pack-file> | --stdin [--fix-thin] [<pack-file>])";

builtin/init-db.c

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
#include "path.h"
1414
#include "setup.h"
1515
#include "strbuf.h"
16-
#include "wrapper.h"
1716

1817
static int guess_repository_type(const char *git_dir)
1918
{

builtin/merge.c

-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@
5353
#include "commit-reach.h"
5454
#include "wt-status.h"
5555
#include "commit-graph.h"
56-
#include "wrapper.h"
5756

5857
#define DEFAULT_TWOHEAD (1<<0)
5958
#define DEFAULT_OCTOPUS (1<<1)

builtin/pack-objects.c

-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
#include "promisor-remote.h"
4444
#include "pack-mtimes.h"
4545
#include "parse-options.h"
46-
#include "wrapper.h"
4746

4847
/*
4948
* Objects we are going to pack are collected in the `to_pack` structure.

builtin/rebase.c

-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
#include "reset.h"
3838
#include "trace2.h"
3939
#include "hook.h"
40-
#include "wrapper.h"
4140

4241
static char const * const builtin_rebase_usage[] = {
4342
N_("git rebase [-i] [options] [--exec <cmd>] "

builtin/receive-pack.c

-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
#include "worktree.h"
4141
#include "shallow.h"
4242
#include "parse-options.h"
43-
#include "wrapper.h"
4443

4544
static const char * const receive_pack_usage[] = {
4645
N_("git receive-pack <git-dir>"),

builtin/rerere.c

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
#include "repository.h"
77
#include "string-list.h"
88
#include "rerere.h"
9-
#include "wrapper.h"
109
#include "xdiff/xdiff.h"
1110
#include "xdiff-interface.h"
1211
#include "pathspec.h"

builtin/unpack-file.c

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
#include "hex.h"
44
#include "object-name.h"
55
#include "object-store-ll.h"
6-
#include "wrapper.h"
76

87
static char *create_temp_file(struct object_id *oid)
98
{

builtin/worktree.c

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
#include "submodule.h"
2525
#include "utf8.h"
2626
#include "worktree.h"
27-
#include "wrapper.h"
2827
#include "quote.h"
2928

3029
#define BUILTIN_WORKTREE_ADD_USAGE \

bulk-checkin.c

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
#include "packfile.h"
1818
#include "object-file.h"
1919
#include "object-store-ll.h"
20-
#include "wrapper.h"
2120

2221
static int odb_transaction_nesting;
2322

combine-diff.c

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
#include "userdiff.h"
1818
#include "oid-array.h"
1919
#include "revision.h"
20-
#include "wrapper.h"
2120

2221
static int compare_paths(const struct combine_diff_path *one,
2322
const struct diff_filespec *two)

commit-graph.c

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
#include "trace2.h"
2727
#include "tree.h"
2828
#include "chunk-format.h"
29-
#include "wrapper.h"
3029

3130
void git_test_write_commit_graph_or_die(void)
3231
{

compat/terminal.c

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
#include "run-command.h"
77
#include "string-list.h"
88
#include "hashmap.h"
9-
#include "wrapper.h"
109

1110
#if defined(HAVE_DEV_TTY) || defined(GIT_WINDOWS_NATIVE)
1211

config.c

-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
#include "wildmatch.h"
4040
#include "worktree.h"
4141
#include "ws.h"
42-
#include "wrapper.h"
4342
#include "write-or-die.h"
4443

4544
struct config_source {

convert.c

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
#include "trace.h"
1717
#include "utf8.h"
1818
#include "merge-ll.h"
19-
#include "wrapper.h"
2019

2120
/*
2221
* convert.c - convert a file when checking it out and checking it in.

copy.c

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#include "git-compat-util.h"
22
#include "copy.h"
33
#include "path.h"
4-
#include "wrapper.h"
54

65
int copy_fd(int ifd, int ofd)
76
{

csum-file.c

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
#include "progress.h"
1212
#include "csum-file.h"
1313
#include "hash.h"
14-
#include "wrapper.h"
1514

1615
static void verify_buffer_or_die(struct hashfile *f,
1716
const void *buf,

daemon.c

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
#include "setup.h"
1111
#include "strbuf.h"
1212
#include "string-list.h"
13-
#include "wrapper.h"
1413

1514
#ifdef NO_INITGROUPS
1615
#define initgroups(x, y) (0) /* nothing */

diff.c

-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
#include "setup.h"
4444
#include "strmap.h"
4545
#include "ws.h"
46-
#include "wrapper.h"
4746

4847
#ifdef NO_FAST_WORKING_DIRECTORY
4948
#define FAST_WORKING_DIRECTORY 0

dir.c

-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
#include "symlinks.h"
3333
#include "trace2.h"
3434
#include "tree.h"
35-
#include "wrapper.h"
3635

3736
/*
3837
* Tells read_directory_recursive how a file or directory should be treated.

editor.c

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
#include "strvec.h"
1212
#include "run-command.h"
1313
#include "sigchain.h"
14-
#include "wrapper.h"
1514

1615
#ifndef DEFAULT_EDITOR
1716
#define DEFAULT_EDITOR "vi"

entry.c

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
#include "fsmonitor.h"
1515
#include "entry.h"
1616
#include "parallel-checkout.h"
17-
#include "wrapper.h"
1817

1918
static void create_directories(const char *path, int path_len,
2019
const struct checkout *state)

environment.c

-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
#include "setup.h"
2929
#include "shallow.h"
3030
#include "trace.h"
31-
#include "wrapper.h"
3231
#include "write-or-die.h"
3332

3433
int trust_executable_bit = 1;

fetch-pack.c

-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434
#include "commit-graph.h"
3535
#include "sigchain.h"
3636
#include "mergesort.h"
37-
#include "wrapper.h"
3837

3938
static int transfer_unpack_limit = -1;
4039
static int fetch_unpack_limit = -1;

gpg-interface.c

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
#include "sigchain.h"
1313
#include "tempfile.h"
1414
#include "alias.h"
15-
#include "wrapper.h"
1615

1716
static int git_gpg_config(const char *, const char *, void *);
1817

grep.c

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
#include "commit.h"
1313
#include "quote.h"
1414
#include "help.h"
15-
#include "wrapper.h"
1615

1716
static int grep_source_load(struct grep_source *gs);
1817
static int grep_source_is_binary(struct grep_source *gs,

http-backend.c

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
#include "object-store-ll.h"
2020
#include "protocol.h"
2121
#include "date.h"
22-
#include "wrapper.h"
2322
#include "write-or-die.h"
2423

2524
static const char content_type[] = "Content-Type";

imap-send.c

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
#include "parse-options.h"
3131
#include "setup.h"
3232
#include "strbuf.h"
33-
#include "wrapper.h"
3433
#if defined(NO_OPENSSL) && !defined(HAVE_OPENSSL_CSPRNG)
3534
typedef void *SSL;
3635
#endif

merge-ll.c

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
#include "merge-ll.h"
1414
#include "quote.h"
1515
#include "strbuf.h"
16-
#include "wrapper.h"
1716

1817
struct ll_merge_driver;
1918

merge-recursive.c

-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
#include "tag.h"
3939
#include "tree-walk.h"
4040
#include "unpack-trees.h"
41-
#include "wrapper.h"
4241
#include "xdiff-interface.h"
4342

4443
struct merge_options_internal {

notes-merge.c

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
#include "trace.h"
2121
#include "notes-utils.h"
2222
#include "commit-reach.h"
23-
#include "wrapper.h"
2423

2524
struct notes_merge_pair {
2625
struct object_id obj, base, local, remote;

object-file.c

-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444
#include "setup.h"
4545
#include "submodule.h"
4646
#include "fsck.h"
47-
#include "wrapper.h"
4847

4948
/* The maximum size for an object header. */
5049
#define MAX_HEADER_LEN 32

pack-write.c

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
#include "pack-revindex.h"
1313
#include "path.h"
1414
#include "strbuf.h"
15-
#include "wrapper.h"
1615

1716
void reset_pack_idx_option(struct pack_idx_option *opts)
1817
{

packfile.c

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
#include "commit-graph.h"
2525
#include "pack-revindex.h"
2626
#include "promisor-remote.h"
27-
#include "wrapper.h"
2827

2928
char *odb_pack_name(struct strbuf *buf,
3029
const unsigned char *hash,

parallel-checkout.c

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
#include "symlinks.h"
1616
#include "thread-utils.h"
1717
#include "trace2.h"
18-
#include "wrapper.h"
1918

2019
struct pc_worker {
2120
struct child_process cp;

path.c

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
#include "object-store-ll.h"
1919
#include "lockfile.h"
2020
#include "exec-cmd.h"
21-
#include "wrapper.h"
2221

2322
static int get_st_mode_bits(const char *path, int *mode)
2423
{

pkt-line.c

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
#include "hex.h"
66
#include "run-command.h"
77
#include "trace.h"
8-
#include "wrapper.h"
98
#include "write-or-die.h"
109

1110
char packet_buffer[LARGE_PACKET_MAX];

0 commit comments

Comments
 (0)