Release from SVN using "export" and then? how to update?

Using SVN, I was thinking of releasing the first build (version 1.0) to a production server using the SVN export command.

What is the next step to upgrade? For example, if I want to release the following assembly, which will be equal to 1.1, how to do it? Without deleting all the files, is there a way to just update the tag?

+3
source share
2 answers

General release step:

  • Create a tag from the main / verified branch. This is freed code. And can not be changed without branching. This is version 1.0. You create and deploy this code on a production server.

  • 1.1 ( ). v1.1 , 1.1. .

. , , (1) (, 1.0), ( 2) , (3) 1.0.1

, . , .


1.1 ? SVN , 1.1? .

SVN

                                                        /---> Tag 1.0.1(release to prod)
                    /--- Branch 1.0.1 for spot-fixes----|
                   /                                    |
             /---Tag 1.0 (released to prod)             v (merge fixes)    /---Tag 1.1 (released to prod)
 Trunk ----->'------Development for v1.1----------------'----------------->'----Development for v1.2-->  

, , .

+6

Source: https://habr.com/ru/post/1795424/


All Articles