diff --git a/.gitmodules b/.gitmodules index 3620f642..e865cc40 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,31 +1,31 @@ [submodule "Examples/src/LinearAlgebra/CppNumericalSolvers"] path = Examples/src/LinearAlgebra/CppNumericalSolvers - url = git@github.com:pacs-course/CppNumericalSolvers.git + url = https://github.com/pacs-course/CppNumericalSolvers.git branch = master [submodule "Examples/src/LinearAlgebra/spectra"] path = Examples/src/LinearAlgebra/spectra - url = git@github.com:pacs-course/spectra.git + url = https://github.com/pacs-course/spectra.git branch = master [submodule "Examples/src/LinearAlgebra/redsvd-h"] path = Examples/src/LinearAlgebra/redsvd-h - url = git@github.com:pacs-course/redsvd-h.git + url = https://github.com/pacs-course/redsvd-h.git branch = master [submodule "Extras/muparser"] path = Extras/muparser - url = git@github.com:pacs-course/muparser.git + url = https://github.com/pacs-course/muparser.git branch = master [submodule "Extras/muparserx"] path = Extras/muparserx - url = git@github.com:pacs-course/muparserx.git + url = https://github.com/pacs-course/muparserx.git [submodule "Extras/json"] path = Extras/json - url = git@github.com:pacs-course/json.git + url = https://github.com/pacs-course/json.git branch = PACS [submodule "Extras/pybind11"] path = Extras/pybind11 - url = git@github.com:pacs-course/pybind11.git + url = https://github.com/pacs-course/pybind11.git branch = master [submodule "Examples/src/pybind11/pybind11_examples"] path = Examples/src/pybind11/pybind11_examples - url = git@github.com:pacs-course/pybind11_examples.git + url = https://github.com/pacs-course/pybind11_examples.git branch = master diff --git a/change_submodules_url_https.sh b/change_submodules_url_https.sh index 4e12c255..e27c3a40 100755 --- a/change_submodules_url_https.sh +++ b/change_submodules_url_https.sh @@ -1,3 +1,4 @@ +#!/bin/bash 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 diff --git a/change_submodules_url_ssh.sh b/change_submodules_url_ssh.sh index 06b3f7ee..e25f10e2 100755 --- a/change_submodules_url_ssh.sh +++ b/change_submodules_url_ssh.sh @@ -1,3 +1,4 @@ +#!/bin/bash git config --file=.gitmodules submodule.Examples/src/LinearAlgebra/CppNumericalSolvers.url git@github.com:pacs-course/CppNumericalSolvers.git git config --file=.gitmodules submodule.Examples/src/LinearAlgebra/spectra.url git@github.com:pacs-course/spectra.git git config --file=.gitmodules submodule.Examples/src/LinearAlgebra/redsvd-h.url git@github.com:pacs-course/redsvd-h.git