Nuke staging
Common flow to successfully nuke staging is:
- Ask in engineering channel can you nuke it right now, because qa will not have ability to test new staging features while you are in progress of nuking.
- Then follow next git commands:
git checkout master //checkout to mastergit pull origin master // get latest mastergit branch -D staging //delete staging branch from local machinegit checkout -b staging // checkout to staginggit push origin staging -f // force push master to staging
- Push all disappeared prioritized and asked branches to staging
git pull origin branch-name // pull other branchesgit push origin staging // push updates to staging