2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
8 #ifndef DEFAULT_GIT_TEMPLATE_DIR
9 #define DEFAULT_GIT_TEMPLATE_DIR "/usr/share/git-core/templates/"
12 static void safe_create_dir(const char *dir
)
14 if (mkdir(dir
, 0777) < 0) {
15 if (errno
!= EEXIST
) {
22 static int copy_file(const char *dst
, const char *src
, int mode
)
26 mode
= (mode
& 0111) ? 0777 : 0666;
27 if ((fdi
= open(src
, O_RDONLY
)) < 0)
29 if ((fdo
= open(dst
, O_WRONLY
| O_CREAT
| O_EXCL
, mode
)) < 0) {
35 ssize_t leni
, leno
, ofs
;
36 leni
= read(fdi
, buf
, sizeof(buf
));
47 leno
= write(fdo
, buf
+ofs
, leni
);
59 static void copy_templates_1(char *path
, int baselen
,
60 char *template, int template_baselen
,
65 /* Note: if ".git/hooks" file exists in the repository being
66 * re-initialized, /etc/core-git/templates/hooks/update would
67 * cause git-init-db to fail here. I think this is sane but
68 * it means that the set of templates we ship by default, along
69 * with the way the namespace under .git/ is organized, should
70 * be really carefully chosen.
72 safe_create_dir(path
);
73 while ((de
= readdir(dir
)) != NULL
) {
74 struct stat st_git
, st_template
;
78 if (de
->d_name
[0] == '.')
80 namelen
= strlen(de
->d_name
);
81 if ((PATH_MAX
<= baselen
+ namelen
) ||
82 (PATH_MAX
<= template_baselen
+ namelen
))
83 die("insanely long template name %s", de
->d_name
);
84 memcpy(path
+ baselen
, de
->d_name
, namelen
+1);
85 memcpy(template + template_baselen
, de
->d_name
, namelen
+1);
86 if (lstat(path
, &st_git
)) {
88 die("cannot stat %s", path
);
93 if (lstat(template, &st_template
))
94 die("cannot stat template %s", template);
96 if (S_ISDIR(st_template
.st_mode
)) {
97 DIR *subdir
= opendir(template);
98 int baselen_sub
= baselen
+ namelen
;
99 int template_baselen_sub
= template_baselen
+ namelen
;
101 die("cannot opendir %s", template);
102 path
[baselen_sub
++] =
103 template[template_baselen_sub
++] = '/';
105 template[template_baselen_sub
] = 0;
106 copy_templates_1(path
, baselen_sub
,
107 template, template_baselen_sub
,
113 else if (S_ISLNK(st_template
.st_mode
)) {
116 len
= readlink(template, lnk
, sizeof(lnk
));
118 die("cannot readlink %s", template);
119 if (sizeof(lnk
) <= len
)
120 die("insanely long symlink %s", template);
122 if (symlink(lnk
, path
))
123 die("cannot symlink %s %s", lnk
, path
);
125 else if (S_ISREG(st_template
.st_mode
)) {
126 if (copy_file(path
, template, st_template
.st_mode
))
127 die("cannot copy %s to %s", template, path
);
130 error("ignoring template %s", template);
134 static void copy_templates(const char *git_dir
, int len
, char *template_dir
)
137 char template_path
[PATH_MAX
];
142 template_dir
= DEFAULT_GIT_TEMPLATE_DIR
;
143 strcpy(template_path
, template_dir
);
144 template_len
= strlen(template_path
);
145 if (template_path
[template_len
-1] != '/') {
146 template_path
[template_len
++] = '/';
147 template_path
[template_len
] = 0;
149 dir
= opendir(template_path
);
151 fprintf(stderr
, "warning: templates not found %s\n",
156 memcpy(path
, git_dir
, len
);
157 copy_templates_1(path
, len
,
158 template_path
, template_len
,
163 static void create_default_files(const char *git_dir
,
166 unsigned len
= strlen(git_dir
);
167 static char path
[PATH_MAX
];
169 if (len
> sizeof(path
)-50)
170 die("insane git directory %s", git_dir
);
171 memcpy(path
, git_dir
, len
);
173 if (len
&& path
[len
-1] != '/')
177 * Create .git/refs/{heads,tags}
179 strcpy(path
+ len
, "refs");
180 safe_create_dir(path
);
181 strcpy(path
+ len
, "refs/heads");
182 safe_create_dir(path
);
183 strcpy(path
+ len
, "refs/tags");
184 safe_create_dir(path
);
187 * Create the default symlink from ".git/HEAD" to the "master"
190 strcpy(path
+ len
, "HEAD");
191 if (symlink("refs/heads/master", path
) < 0) {
192 if (errno
!= EEXIST
) {
197 copy_templates(path
, len
, template_path
);
200 static const char init_db_usage
[] =
201 "git-init-db [--template=<template-directory>]";
204 * If you want to, you can share the DB area with any number of branches.
205 * That has advantages: you can save space by sharing all the SHA1 objects.
206 * On the other hand, it might just make lookup slower and messier. You
207 * be the judge. The default case is to have one DB per managed directory.
209 int main(int argc
, char **argv
)
212 const char *sha1_dir
;
213 char *path
, *template_dir
= NULL
;
216 for (i
= 1; i
< argc
; i
++, argv
++) {
220 else if (!strncmp(arg
, "--template=", 11))
221 template_dir
= arg
+11;
227 * Set up the default .git directory contents
229 git_dir
= getenv(GIT_DIR_ENVIRONMENT
);
231 git_dir
= DEFAULT_GIT_DIR_ENVIRONMENT
;
232 fprintf(stderr
, "defaulting to local storage area\n");
234 safe_create_dir(git_dir
);
235 create_default_files(git_dir
, template_dir
);
238 * And set up the object store.
240 sha1_dir
= get_object_directory();
241 len
= strlen(sha1_dir
);
242 path
= xmalloc(len
+ 40);
243 memcpy(path
, sha1_dir
, len
);
245 safe_create_dir(sha1_dir
);
246 for (i
= 0; i
< 256; i
++) {
247 sprintf(path
+len
, "/%02x", i
);
248 safe_create_dir(path
);
250 strcpy(path
+len
, "/pack");
251 safe_create_dir(path
);
252 strcpy(path
+len
, "/info");
253 safe_create_dir(path
);