settings

How to use git in my workflow ?

Let’s define how to proceed with your development and delivery

THE 1 RULE

We have only 1 rule to make our life (yours and ours) easier.

Rule 1 : You never push on main branch.

As long as you follow this rule, we will all be happy.

Project Kick off

git clone -b main #url#
git checkout -b #dev_branch#
git push origin #dev_branch#

Delivery

git push origin #dev_branch#

UAT validation

# Automatic UAT reset every morning
git pull origin #dev_branch#

Validation to production

We take care of it using the latest version of your branch

git pull origin #dev_branch#

we do not execute git pull request from gtihub.com