Git deployment for multiple existing environments

69 Views Asked by At

I am kind of new to Git and I have a question regarding using Git for a website. I have searched a lot but haven't found a solution yet. We already have 3-4 environments setup on our Windows servers without Git and each environment already has code which is different from each other.

There are three environments

  1. Live
  2. UAT
  3. Test (has the latest code)

And then developers have their local copies.

We write and test the code locally and manually move each point from one environment to other using merging software and test at each environment.

Now we want to use git because manually moving the code is a lengthy process. Also as the developers have local copies, it is very difficult to manage code.

Code is written locally by the team and then after testing locally it is first merged with "Test" environment code, then "UAT" and then, finally with "Live".

So we have two concerns:

  1. There is different code already existing on these environments.
  2. Testing the code on each environment using the web server.

What is the best way to go about it?

As I am new to git more details will be helpful, like commands to use.

Thanks,

1

There are 1 best solutions below

0
On

These are different. Don't mix them up.

  1. Source control. (Git, SVN). Maintain code and changes to the code. It has nothing to do with where you are deploying it.
  2. Build. compile and package. Build for each environment using ANT or Gradle. Change files (i.e config files) for specific environment then package them.
  3. Deployment. Deploy packaged build into each environment using ANT or Gradle.