Upload branch information after days

1

I have 2 development areas: approval and production . Generally before going up to production I go up to the homologation to perform test (I believe that general does this) until here everything OK.

But I'm going to upload a new layout to a website and I would like to use it for a few days in the homologation before, and the doubt is: For GIT I create a new branch , I'm up for homologation and after 1 week I can raise that same branch to production?

    
asked by anonymous 18.09.2017 / 14:27

1 answer

1

As the layout is experimental, you can do as I said:

  • Create a branch only with the new layout
  • Upload it for approval
  • By doing everything right, you can merge this branch to the production branch (which would be equivalent to what you said)
  • Another idea would be to keep both layouts (old and new) in your application and control the enablement of one or the other, via parameter. This strategy is known as Toggle Feature . So you can already upload the code to the production branch and turn on this parameter to enable the new layout in approval.

        
    25.07.2018 / 18:50