There was an error while loading. Please reload this page.
git checkout -b new_feature master
git commit
git pull --rebase origin
Reviewer 5. Accept or Request changes
Pripadne si pozrite toto: http://www.atlassian.com/git/workflows#!workflow-centralized
git checkout master git pull origin master git checkout feature git rebase master
alebo skratene
git fetch git checkout feature git rebase origin/master
potom treba spravit force push (co je jediny pripad kedy to chceme robit) - ale treba si dat pozor
git push origin feature --force