This repo is using both git submodule as well as git lfs ( large file support )
For git lfs, git version should be >= 1.8.2
On ubuntu, for example:
git --version
# to install git-lfs
curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash
sudo apt-get install git-lfs
# register git-lfs plugin into git
git lfs install
git lfs --helpif lfs plugin is not present, instruction in
mkdir <new_folder>
cd <new_folder>
git clone https://github.com/RemoteConnectionManager/RCM_client_CI.gitIf you want to update to the latests commit also the submodule, do
cd RCM_client_CI
git submodule update --recursive --remoteIn order to setup a developmemt environment on linux, you need python3 and virtualenv. look at client instructions:
or you can use a setup script that is setting up needed environment and alias
source scripts/dev_setup.sh
RCM