← Back to team overview

mvhub-dev team mailing list archive

[Merge] lp:~omacneil/mvhub/csheet_mv_up into lp:mvhub

 

Dan MacNeil has proposed merging lp:~omacneil/mvhub/csheet_mv_up into lp:mvhub.

Requested reviews:
  MVHub devs with commit rights (mvhub-commit)


update docs

see commit msgs
-- 
https://code.launchpad.net/~omacneil/mvhub/csheet_mv_up/+merge/31335
Your team MVHub Developers is subscribed to branch lp:mvhub.
=== modified file 'app-mvhub/doc/cheat_sheets/bzr_workflow.txt'
--- app-mvhub/doc/cheat_sheets/bzr_workflow.txt	2010-06-28 20:13:48 +0000
+++ app-mvhub/doc/cheat_sheets/bzr_workflow.txt	2010-07-29 22:16:42 +0000
@@ -21,7 +21,7 @@
 		bzr branch lp:mvhub/trunk $YOUR_NEW_BRANCH_NAME
 
 #	associate your branch with a bug report (if applicable)
-	  bzr --unchanged -m 'associate: <bug num>' --fixes lp:<bug num>
+	  bzr commit --unchanged -m 'associate: <bug num>' --fixes lp:<bug num>
 
 #	make branch show up in your testing site
 # 		http://mvh.<your username>.testing123.net active
@@ -33,7 +33,7 @@
 		cdw 
 		bzr push
 		
-#	do your work, but save & integrate often
+#	do your work, but commit & merge trunk into your branch often
 
 		cdw
 
@@ -55,10 +55,13 @@
 
 		bzr commit
 
-		# merge trunk ---> your branch
-		cdw
-		bzr merge lp:mvhub/trunk
-		bzr commit -m "merged trunk"
+                # merge trunk ---> your branch
+                cdw
+                bzr merge lp:mvhub/trunk
+                bzr commit -m "merged trunk"
+                # apply database schema changes
+                mv_update_development			
+                mv_prove -r app-mvhub/t lib-mvhub/t
 				
 # PROCEDURE	Make A Merge Request
 


Follow ups