Bladeren bron

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 jaren geleden
bovenliggende
commit
5135ad9ddd
2 gewijzigde bestanden met toevoegingen van 21 en 0 verwijderingen
  1. 5
    0
      .gitignore
  2. 16
    0
      .gitmodules

+ 5
- 0
.gitignore Bestand weergeven

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

+ 16
- 0
.gitmodules Bestand weergeven

@@ -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

Laden…
Annuleren
Opslaan