my basic disk is full for my gitlab installation, is it possible to move the repositories and their data to some other folder and make sure that the upcoming push\'s data is
you need append this small config bellow:
git_data_dirs({ "default" => { "path" => "/srv/gitlab/git-data" } })
And
rsync -av /var/opt/gitlab/git-data/* /srv/gitlab/git-data/. chown -R git:git /srv/gitlab/git-data/ sudo gitlab-ctl reconfigure
Done.