<@U5FHY30BV> I have an "environment" branch for ea...
# sdf
e
@darrenhillconsulting I have an "environment" branch for each environment (e.g.
env/production
,
env/sb1
, etc). These branches are not included as part of the normal development workflow. They are only there for comparison. Say I'm about to release into Production v1.1.0 of some particular project; the process goes like:
Copy code
> git switch env/production
> git pull
> suitecloud account:setup
> suitecloud project:update
> git add .
> git commit -m "update production" && git push
> git switch release/v1.1.0
> git pull
> git diff env/production..release/v1.1.0