Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 492 Bytes

File metadata and controls

38 lines (26 loc) · 492 Bytes

develop locally

git co master 
git co -b new-branch 
	// do not make changes that are specific to a particular deployment 
	// eg setting authentication methods or db hosts 
git push 

test in qa

git co qa
gitnffmerge new-branch
git push 

deploy to QA server

approve for production

gitnffmerge new-branch 

git co qa
git rebase master 

git diff --stat qa master  
git push 
git co master 
git push 

deploy to production server