Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2017-02-20 12:16:58 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-02-20 12:16:58 +0300
commit86d8dc12c10421cc3782619e0528d83f934385ea (patch)
tree6918a3702d81cab7b27c9da1bea67662b5297ce8 /make.bat
parent22119f976e910293904b29f220ec144e7ab7a7ff (diff)
Use Git submodule tracking feature
This way we can point submodules to different branches. There are two side-effects to this: - Git 1.8.2 becomes the minimal required version now to support this feature. - Not sure how doing local changes in submodules followed by `make update` will behave. We don't use explicit rebase now. Perhaps this is not so bad, since it was already quite dangerous thing to do.
Diffstat (limited to 'make.bat')
-rw-r--r--make.bat2
1 files changed, 1 insertions, 1 deletions
diff --git a/make.bat b/make.bat
index dd82b1ca8a7..7a088a802f6 100644
--- a/make.bat
+++ b/make.bat
@@ -90,7 +90,7 @@ if NOT "%1" == "" (
) else if "%1" == "update" (
svn up ../lib/*
git pull --rebase
- git submodule foreach git pull --rebase origin master
+ git submodule update --remote
goto EOF
) else if "%1" == "clean" (
set MUST_CLEAN=1