0
Good night to you all;
I recently set up a git server with several projects so that developers can work on a single GIT server, however when the git client is used the developer needs to make a clone of the project from the corresponding project’s shared git server and when changes are pushed etc this goes to the GIT server, Is there any way to get the GIT client to push the necessary changes and the GIT server to push the changes to client servers where the applications are actually in production ? or a client on which connections are made similar to FTP so that it can work remote on the server, the scenario would be similar as follows.
push client > shared GIT server project > automatic push to server production clients.
Thank you.
Although your doubt is not very clear, I believe it is something you want, https://jenkins.io/
– Barbetta
What you probably want is to create an automated build and deploy job using a tool called Jenkins. With it, you can, for example, get a Git commit to sensitize a series of tasks performed in sequence (pipeline), such as the upload you want. Take a look around, there’s a lot on the Internet.
– StatelessDev