I am using Redhat linux in my web server and I had git repositories manually setup in one ip called 192.168.0.100. This was installed under a user called git. I have been accessing git by calling like:
git clone git@192.168.0.100:my-project.git
After that I planned to install gitlab in the same server. So I installed gitlab community version. But after that I can no longer access my old repositories. So I uninstalled gitlab using commands :
sudo gitlab-ctl uninstall
sudo dpkg -P gitlab-ce
After that I try to access my old repositories using command in my local machine :
git clone git@192.168.0.100:my-project.git
But it showing error like:
Cloning into 'my-project'...
sh: /opt/gitlab/embedded/service/gitlab-shell/bin/gitlab-shell: No such file or directory
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
Apparently my gitlab installion changed some settings in git.
Where I can fix this ?