Skip to content

Commit 604047e

Browse files
committed
feat(repo): add pro-git
1 parent 58050db commit 604047e

File tree

5 files changed

+13
-1
lines changed

5 files changed

+13
-1
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,6 @@
1111
[submodule "repo/js-primer"]
1212
path = repo/js-primer
1313
url = https://github.com/asciidwango/js-primer
14+
[submodule "repo/progit"]
15+
path = repo/progit
16+
url = https://github.com/progit/progit

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@ module.exports.get = function get(ext = ".*") {};
9292
- License: <https://github.com/nutti/Introduction-to-Add-on-Development-in-Blender/blob/draft/LICENSE>
9393
- [The-Little-Book-on-CoffeeScript](https://github.com/minghai/library/tree/gh-pages)
9494
- License: <https://github.com/minghai/library/tree/gh-pages>
95+
- [progit](https://github.com/progit/progit)
96+
- License: <https://git-scm.com/book/en/v2>
9597

9698
## Changelog
9799

build.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ function copyTask() {
3535
copy(Refs["js-primer"], "source/basic/**/*.md"),
3636
copy(Refs["JavaScript-Plugin-Architecture"], "ja/**/*.md"),
3737
copy(Refs["Introduction-to-Add-on-Development-in-Blender"], "body/chapter_**/*.md"),
38-
copy(Refs["The-Little-Book-on-CoffeeScript"], "coffeescript/chapters/ja_JP/**/*.md")
38+
copy(Refs["The-Little-Book-on-CoffeeScript"], "coffeescript/chapters/ja_JP/**/*.md"),
39+
copy(Refs["progit"], "ja/**/*.{md,markdown}"),
3940
]);
4041
}
4142

index.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ const References = {
2222
name: "The-Little-Book-on-CoffeeScript",
2323
url: "https://github.com/minghai/library/tree/gh-pages",
2424
license: "https://github.com/minghai/library/tree/gh-pages"
25+
},
26+
"progit": {
27+
name: "progit",
28+
url: "https://github.com/progit/progit",
29+
license: "https://git-scm.com/book/en/v2"
2530
}
2631
};
2732

repo/progit

Submodule progit added at 70459b1

0 commit comments

Comments
 (0)