I need to configure git with repository connection to gitlab. When writing commands, the error -bash: git: command not found occurs. What could be the problem and how to fix it. 
Screenshot with instructions from GitLab:
I need to configure git with repository connection to gitlab. When writing commands, the error -bash: git: command not found occurs. What could be the problem and how to fix it. 
Screenshot with instructions from GitLab:
Bash clearly hints that git is not installed. There are two possible solutions - right and wrong. Or install git on the server ( apt-get install git most likely if ubuntu is there, for other options there are some commands). Or the right one - you need to install a deployment system on the server, and not to pull the repository.
apt-get install git - PashaPash ♦apt-get install does not work, write in the question what is your OS. And better go the right way and configure the deployment system. - Nick Volynkin ♦Source: https://ru.stackoverflow.com/questions/604185/
All Articles