forked from OpenModelica/OMCompiler-3rdParty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ModelicaExternalC.txt
17 lines (15 loc) · 944 Bytes
/
ModelicaExternalC.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
git init
git remote add origin [email protected]:sjoelund/MSL-split
git remote add MSL [email protected]:modelica/Modelica.git
git fetch MSL master
git checkout -f MSL/master
git subtree split --squash --prefix="Modelica/Resources/C-Sources" -b MSL_sources
git subtree split --squash --prefix="Modelica/Resources/BuildProjects/autotools" -b MSL_autotools
git push -u origin MSL/master:MSL_master
git push -u origin MSL_sources
git push -u origin MSL_autotools
# In 3rdParty
git subtree add --squash --prefix="ModelicaExternalC/C-Sources" [email protected]:sjoelund/MSL-split MSL_sources
git subtree add --squash --prefix="ModelicaExternalC/BuildProjects/autotools" [email protected]:sjoelund/MSL-split MSL_autotools
git subtree pull --squash --prefix="ModelicaExternalC/C-Sources" [email protected]:sjoelund/MSL-split MSL_sources
git subtree pull --squash --prefix="ModelicaExternalC/BuildProjects/autotools" [email protected]:sjoelund/MSL-split MSL_autotools