forked from maartenteaches/mkproject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmp_research_git.mpp
34 lines (31 loc) · 897 Bytes
/
mp_research_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
<header>
<mkproject> project
<version> 2.1.0
<label> Research with git
<reqs> git
<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.
</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> cd analysis
<cmd> projmanager <abbrev>.stpr
<cmd> doedit "<abbrev>_main.do"
<cmd> doedit "<abbrev>_dta01.do"
<cmd> doedit "<abbrev>_ana01.do"
</body> ------------------------------------------------------------------------