Created
February 1, 2013 19:51
-
-
Save MGalv/4693635 to your computer and use it in GitHub Desktop.
Git flow propossal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Initial setup | |
$git clone https://grant_hudgens@bitbucket.org/NikkiD/phoenix.git | |
$git branch development | |
$git checkout development | |
$git pull origin development | |
Push commits to remote | |
$git checkout development | |
$git pull origin development | |
$git branch epic-<something> | |
$git checkout epic-<something> | |
$vi all_the_files.txt | |
$git add all_the_files.txt | |
$git commit -m "I changed these things" | |
$git checkout development | |
$git pull origin development | |
$git checkout epic-<something> | |
$git rebase origin development | |
$git push origin epic-<something> | |
*After tests passing (Only the server/admin/bamboo) | |
$git merge epic-<something> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment