-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathrepos_sample.json
More file actions
35 lines (35 loc) · 1.68 KB
/
repos_sample.json
File metadata and controls
35 lines (35 loc) · 1.68 KB
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
[
{
"target_repo" : ["/home/brian/myrepo","/home/brian/myrepo-old"],
"target_email" : ["brian@example.org","bob@otherexample.com"],
"dummy_repo" : "/home/brian/dummy_myrepo",
"dummy_repo_data" : "/home/brian/dummy_myrepo/data",
"dummy_email" : "brian@example.org",
"dummy_name" : "Brian Seymour",
"dummy_readme" : "This public repository reflects the commits from a private repo (minus the actual code)",
"dummy_ext" : ".js",
"dummy_code" : "'use strict';",
"hide_commits" : false,
"random_file_name" : false,
"auto_push" : true,
"force" : false,
"remote" : "https://github.com/yourname/dummy_repo"
},
{
"target_repo" : ["/home/brian/myotherprivaterepo"],
"target_email" : ["brian@example.org"],
"dummy_repo" : "/home/brian/dummy_myotherprivaterepo",
"dummy_repo_data" : "/home/brian/dummy_myotherprivaterepo/data",
"dummy_email" : "brian@example.org",
"dummy_name" : "Brian Seymour",
"dummy_readme" : "This public repository reflects the commits from a private repo (minus the actual code)",
"dummy_ext" : "",
"dummy_code" : "",
"dummy_commit_message": "Example other commit message",
"hide_commits" : true,
"random_file_name" : true,
"auto_push" : true,
"force" : true,
"remote" : "https://github.com/yourname/dummy_privaterepo"
}
]