forked from maartenteaches/mkproject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmp_researcht_git.mpp
36 lines (32 loc) · 1.01 KB
/
mp_researcht_git.mpp
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
27
28
29
30
31
32
33
34
35
36
<header>
<mkproject> project
<version> 2.1.0
<label> Research project with git, display project with dirtree
<reqs> git
<reqs> dirtree
<description>
{pstd}
This template sets up a directory for a medium sized research project that uses
{browse "https://git-scm.com/":git} to keep track of its history.
{pstd}
The only difference with the {help mp_p_research_git:research_git} template is
that this template shows the content of the created project folder using
{help dirtree}, and the {it:research_git} template does not.
</description>
</header>
<body> -------------------------------------------------------------------------
<dir> docu
<dir> data
<dir> ana
<dir> txt
<file> readme readme.md
<file> ignore .ignore
<file> rlog docu/research_log.md
<file> main ana/<abbrev>_main.do
<file> dta_g ana/<abbrev>_dta01.do
<file> ana ana/<abbrev>_ana01.do
<cmd> !git init -b main
<cmd> !git add .
<cmd> !git commit -m "initial commit"
<cmd> dirtree
</body> ------------------------------------------------------------------------