-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Note that now we are explicitely tracking branches and the tracked branch of submodules is normally mater, a part from Extras/json which tracks the branch PACS.
- Loading branch information
1 parent
b0af5e1
commit f7373eb
Showing
6 changed files
with
35 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,39 @@ | ||
[submodule "Examples/src/LinearAlgebra/CppNumericalSolvers"] | ||
path = Examples/src/LinearAlgebra/CppNumericalSolvers | ||
url = [email protected]:lformaggia/CppNumericalSolvers.git | ||
url = [email protected]:pacs-course/CppNumericalSolvers.git | ||
[submodule "Examples/src/LinearAlgebra/spectra"] | ||
path = Examples/src/LinearAlgebra/spectra | ||
url = [email protected]:lformaggia/spectra.git | ||
url = [email protected]:pacs-course/spectra.git | ||
[submodule "Examples/src/LinearAlgebra/redsvd-h"] | ||
path = Examples/src/LinearAlgebra/redsvd-h | ||
url = [email protected]:lformaggia/redsvd-h.git | ||
url = [email protected]:pacs-course/redsvd-h.git | ||
[submodule "Extras/muparser"] | ||
path = Extras/muparser | ||
url = [email protected]:lformaggia/muparser.git | ||
url = [email protected]:pacs-course/muparser.git | ||
[submodule "Extras/muparserx"] | ||
path = Extras/muparserx | ||
url = [email protected]:lformaggia/muparserx.git | ||
url = [email protected]:pacs-course/muparserx.git | ||
[submodule "Extras/json"] | ||
path = Extras/json | ||
url = [email protected]:lformaggia/json.git | ||
url = [email protected]:pacs-course/json.git | ||
branch = PACS | ||
[submodule "Extras/pybind11"] | ||
path = Extras/pybind11 | ||
url = [email protected]:pacs-course/pybind11.git | ||
[submodule "Examples/src/pybind11/pybind11_examples"] | ||
path = Examples/src/pybind11/pybind11_examples | ||
url = [email protected]:pacs-course/pybind11_examples.git | ||
[submodule "json"] | ||
branch = PACS | ||
[submodule "muparser"] | ||
branch = master | ||
[submodule "muparserx"] | ||
branch = master | ||
[submodule "spectra"] | ||
branch = master | ||
[submodule "redsvd-h"] | ||
branch = master | ||
[submodule "CppNumericalSolvers/"] | ||
branch = master | ||
[submodule "pybind11"] | ||
branch = master |
Submodule pybind11
updated
87 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
git config --file=.gitmodules submodule.Examples/src/LinearAlgebra/CppNumericalSolvers.url https://github.com/lformaggia/CppNumericalSolvers.git | ||
git config --file=.gitmodules submodule.Examples/src/LinearAlgebra/spectra.url https://github.com/lformaggia/spectra.git | ||
git config --file=.gitmodules submodule.Examples/src/LinearAlgebra/redsvd-h.url https://github.com/lformaggia/redsvd-h.git | ||
git config --file=.gitmodules submodule.Extras/muparser.url https://github.com/lformaggia/muparser.git | ||
git config --file=.gitmodules submodule.Extras/muparserx.url https://github.com/lformaggia/muparserx.git | ||
git config --file=.gitmodules submodule.Extras/json.url https://github.com/lformaggia/json.git | ||
git config --file=.gitmodules submodule.Examples/src/LinearAlgebra/CppNumericalSolvers.url https://github.com/pacs-course/CppNumericalSolvers.git | ||
git config --file=.gitmodules submodule.Examples/src/LinearAlgebra/spectra.url https://github.com/pacs-course/spectra.git | ||
git config --file=.gitmodules submodule.Examples/src/LinearAlgebra/redsvd-h.url https://github.com/pacs-course/redsvd-h.git | ||
git config --file=.gitmodules submodule.Extras/muparser.url https://github.com/pacs-course/muparser.git | ||
git config --file=.gitmodules submodule.Extras/muparserx.url https://github.com/pacs-course/muparserx.git | ||
git config --file=.gitmodules submodule.Extras/json.url https://github.com/pacs-course/json.git | ||
git submodule sync | ||
git submodule update --recursive --remote | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
git config --file=.gitmodules submodule.Examples/src/LinearAlgebra/CppNumericalSolvers.url [email protected]:lformaggia/CppNumericalSolvers.git | ||
git config --file=.gitmodules submodule.Examples/src/LinearAlgebra/spectra.url [email protected]:lformaggia/spectra.git | ||
git config --file=.gitmodules submodule.Examples/src/LinearAlgebra/redsvd-h.url [email protected]:lformaggia/redsvd-h.git | ||
git config --file=.gitmodules submodule.Extras/muparser.url [email protected]:lformaggia/muparser.git | ||
git config --file=.gitmodules submodule.Extras/muparserx.url [email protected]:lformaggia/muparserx.git | ||
git config --file=.gitmodules submodule.Extras/json.url [email protected]:lformaggia/json.git | ||
git config --file=.gitmodules submodule.Examples/src/LinearAlgebra/CppNumericalSolvers.url [email protected]:pacs-course/CppNumericalSolvers.git | ||
git config --file=.gitmodules submodule.Examples/src/LinearAlgebra/spectra.url [email protected]:pacs-course/spectra.git | ||
git config --file=.gitmodules submodule.Examples/src/LinearAlgebra/redsvd-h.url [email protected]:pacs-course/redsvd-h.git | ||
git config --file=.gitmodules submodule.Extras/muparser.url [email protected]:pacs-course/muparser.git | ||
git config --file=.gitmodules submodule.Extras/muparserx.url [email protected]:pacs-course/muparserx.git | ||
git config --file=.gitmodules submodule.Extras/json.url [email protected]:pacs-course/json.git | ||
git submodule sync | ||
git submodule update --recursive --remote | ||
|