This repository contains submodules, which point to different GitHub repositories themselves. If you do a normal git clone <repo>
, the submodules folders will be there, but empty.
If you have already cloned it, just init
submodules afterwards:
$ git clone https://github.com/qbicsoftware/basic-analysis-scripts.git
$ git submodule init
$ git submodule update
or as 1-liner right from the first clone command:
$ git clone --recurse-submodules https://github.com/qbicsoftware/basic-analysis-scripts.git
If you want to add a new repository as additional submodule, just do:
$ git submodule add <new repo url>
Once you have made changes to your onw repository, they won't be visible here as this submodule points to a certain commit of your repository. To show the changes also in this repository, you have to run the following commands in your local repository of this project:
$ git submodule update --remote
$ git add .
$ git commit -m "Some details about the commit"