Apeafa dez
Apeafa dez

Reputation: 13

TORTOISE: Dev Server, Production Server and Final client

I have two servers. One is for developing and testing applications The other is to release the software to production (We are a textile factory)

Right now, we finish the development and put the "final version" to the production server (drag and drop)

As you can imagine, this takes lots of times when we make an upgrade to the software. We need to drag and drop again, and sometimes the projects are big

So, I am looking for a solution that allows you to make a Commit at the developing server and then we can Upgrade the software at the production server.

Can I do that with SVN Tortoise?

Or maybe using Git?

Upvotes: 0

Views: 54

Answers (1)

Rob Conklin
Rob Conklin

Reputation: 9464

I'm having some trouble parsing what you are asking, but let me give it a go:

You are looking to have something automatically build and deploy the production server when and if it is verified on the development server. This is not really a function of your version control software (SVN vs Git), but more the responsibility of your build process. Modern companies solve this with Continuous Integration (CI) and Continuous Delivery (CD) processes.

This is best handled through a CI/CD tool like Jenkins, although your ultimate solution strongly depends on what technical stack you are using (.NET? C++? Java?).

Upvotes: 1

Related Questions