소스 검색

Add other repos as submodules.

I've added them to .gitmodules but ignored the repos themselves.
Hopefully this means everyone can just do `git submodule update
--init --remote`, without us having to commit updates every
time one of the repos changes.
pull/1/head
Chris Smith 9 년 전
부모
커밋
5135ad9ddd
2개의 변경된 파일21개의 추가작업 그리고 0개의 파일을 삭제
  1. 5
    0
      .gitignore
  2. 16
    0
      .gitmodules

+ 5
- 0
.gitignore 파일 보기

@@ -0,0 +1,5 @@
1
+# Ignore submodules
2
+/client
3
+/parser
4
+/plugins
5
+/util

+ 16
- 0
.gitmodules 파일 보기

@@ -0,0 +1,16 @@
1
+[submodule "client"]
2
+	path = client
3
+	url = git@github.com:DMDirc/DMDirc.git
4
+	branch = master
5
+[submodule "plugins"]
6
+	path = plugins
7
+	url = git@github.com:DMDirc/Plugins.git
8
+	branch = master
9
+[submodule "util"]
10
+	path = util
11
+	url = git@github.com:DMDirc/Util.git
12
+	branch = master
13
+[submodule "parser"]
14
+	path = parser
15
+	url = git@github.com:DMDirc/Parser.git
16
+	branch = master

Loading…
취소
저장