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
AgeCommit message (Collapse)Author
2018-12-21Update for moving blender2.8 to master.Brecht Van Lommel
2018-10-23Point addons contrib to 2.8 branchSergey Sharybin
2018-04-23Fix git submodules branch configurationSergey Sharybin
2017-04-03Merge branch 'master' into blender2.8Sergey Sharybin
2017-04-03Point all submodules to master branchSergey Sharybin
This way it should be safe to use `git submodule update --remote`.
2017-02-20Use Git submodule tracking featureSergey Sharybin
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.
2016-07-14Add developer tools submoduleCampbell Barton
This is intended for utilities to help with development, which aren't needed for building. See https://wiki.blender.org/index.php/Dev:Doc/Tools/Blender_Tools_Repo for details
2016-01-04Remove SCons building systemSergey Sharybin
While SCons building system was serving us really good for ages it's no longer having much attention by the developers and started to become quite a difficult task to maintain. What's even worse -- there started to be quite serious divergence between SCons and CMake which was only accumulating over the releases now. The fact that none of the active developers are really using SCons and that our main studio is also using CMake spotting bugs in the SCons builds became quite a difficult task and we aren't always spotting them in time. Meanwhile CMake became really mature building system which is available on every platform we support and arguably it's also easier and more robust to use. This commit includes: - Removal of actual SCons building system - Removal of SCons git submodule - Removal of documentation which is stored in the sources and covers SCons - Tweaks to the buildbot master to stop using SCons submodule (this change requires deploying to the server) - Tweaks to the install dependencies script to skip installing or mentioning SCons building system - Tweaks to various helper scripts to avoid mention of SCons folders/files as well Reviewers: mont29, dingto, dfelinto, lukastoenne, lukasstockner97, brecht, Severin, merwin, aligorith, psy-fi, campbellbarton, juicyfruit Reviewed By: campbellbarton, juicyfruit Differential Revision: https://developer.blender.org/D1680
2013-11-15Initialize git submodules for addons, locales and sconsSergey Sharybin
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.