erictgrubaugh
02/04/2021, 6:17 PMenv/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:
> 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