Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
2c9ed02e
Commit
2c9ed02e
authored
Sep 20, 2013
by
Vicent Martí
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1859 from linquize/init.templatedir
Make init.templatedir work
parents
5a284edc
417472e3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
18 deletions
+13
-18
src/repository.c
+13
-18
No files found.
src/repository.c
View file @
2c9ed02e
...
...
@@ -1132,44 +1132,39 @@ static int repo_init_structure(
/* Copy external template if requested */
if
(
external_tpl
)
{
git_config
*
cfg
;
const
char
*
tdir
;
git_config
*
cfg
=
NULL
;
const
char
*
tdir
=
NULL
;
bool
default_template
=
false
;
git_buf
template_buf
=
GIT_BUF_INIT
;
git_futils_find_template_dir
(
&
template_buf
);
if
(
opts
->
template_path
)
tdir
=
opts
->
template_path
;
else
if
((
error
=
git_config_open_default
(
&
cfg
))
<
0
)
return
error
;
else
{
else
if
((
error
=
git_config_open_default
(
&
cfg
))
>=
0
)
{
error
=
git_config_get_string
(
&
tdir
,
cfg
,
"init.templatedir"
);
git_config_free
(
cfg
);
if
(
error
&&
error
!=
GIT_ENOTFOUND
)
return
error
;
giterr_clear
();
tdir
=
template_buf
.
ptr
;
}
if
(
!
tdir
)
{
if
((
error
=
git_futils_find_template_dir
(
&
template_buf
))
>=
0
);
tdir
=
template_buf
.
ptr
;
default_template
=
true
;
}
error
=
git_futils_cp_r
(
tdir
,
repo_dir
,
GIT_CPDIR_COPY_SYMLINKS
|
GIT_CPDIR_CHMOD_DIRS
|
GIT_CPDIR_SIMPLE_TO_MODE
,
dmode
);
git_buf_free
(
&
template_buf
);
git_config_free
(
cfg
);
if
(
error
<
0
)
{
if
(
strcmp
(
tdir
,
template_buf
.
ptr
)
!=
0
)
{
git_buf_free
(
&
template_buf
);
if
(
!
default_template
)
return
error
;
}
/* if template was default, ignore error and use internal */
giterr_clear
();
external_tpl
=
false
;
error
=
0
;
}
git_buf_free
(
&
template_buf
);
}
/* Copy internal template
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment