Skip to content
zben edited this page May 2, 2012 · 1 revision

Git workflow

initialize the project

git clone [email protected]:zben/talent-search.git

pull the latest changes

git pull origin master --rebase

create a new branch to work on your feature

git checkout -b new_feature_branch

commit your changes to the feature branch and push it for review.

git add . git commit -a -m "changed the user model into a polymorphic one" git diff new_feature_branch master git push -u new_feature_branch

submit a pull-request on github

Lead developer will check the code, merge the pull-request into the master branch and feature is accepted.