-
Notifications
You must be signed in to change notification settings - Fork 9
Workflow
Michal Hozza edited this page Nov 1, 2015
·
17 revisions
git checkout -b new_feature master
git commit
git pull --rebase origin
- Pull request
- Wait for review
- Merge pull request If accepted by reviewer or Apply changes and goto 5. otherwise
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
- zakomentovany kod
- nefunkcny kod (do vlastnej branche vprincipe mozte, ale je vhodne to mat v popise ze ten commit nie je funkcny)