Labs/Jetpack/FlightDeck/Code Workflow/Management Commands: Difference between revisions

Jump to navigation Jump to search
m
Line 33: Line 33:


Pull the bug-#- branch from developer ''john''
Pull the bug-#- branch from developer ''john''
   git remote add -t bug-1234-name_of_the_bug john-577738-update_Bespin git@github.com:john/FlightDeck.git -f
   git remote add -t bug-1234-name_of_the_bug john-1234-name_of_the_bug git@github.com:john/FlightDeck.git -f
   git checkout branch-1234-name_of_the_bug
   git checkout john-1234-name_of_the_bug
Now it's possible to test if the feature is working. If so - merge it into the '''master'''
Now it's possible to test if the feature is working. If so - merge it into the '''master'''
   git checkout master
   git checkout master
   git merge --no-ff bug-1234-name_of_the_bug
   git merge --no-ff john-1234-name_of_the_bug
And delete the branch from your local repository
And delete the branch from your local repository
   git branch -d bug-1234-name_of_the_bug
   git branch -d john-1234-name_of_the_bug
Push the master to the main repository
Push the master to the main repository
   git push main master
   git push main master
Confirmed users
514

edits

Navigation menu