Initialize git submodules for addons, locales and scons

Uses relative paths to repositories, so this is expected
to work fine for any protocol we support (git, ssh and http).

Uses ignore=all for all the submodules, so updating them
to latest remote hash does not tags blender repository
as changes. But it is still possible to make changes to
submodules and commit them from their path.
This commit is contained in:
Sergey Sharybin
2013-11-15 12:19:08 +06:00
parent c53f80aeed
commit 6bbca88f66
5 changed files with 20 additions and 0 deletions

16
.gitmodules vendored Normal file
View File

@@ -0,0 +1,16 @@
[submodule "release/scripts/addons"]
path = release/scripts/addons
url = ../blender-addons.git
ignore = all
[submodule "release/scripts/addons_contrib"]
path = release/scripts/addons_contrib
url = ../blender-addons-contrib.git
ignore = all
[submodule "release/datafiles/locale"]
path = release/datafiles/locale
url = ../blender-translations.git
ignore = all
[submodule "scons"]
path = scons
url = ../scons.git
ignore = all

1
scons Submodule

Submodule scons added at ccea0f01de