| | 1 | [[TOC(heading=Git)]] |
| | 2 | [[TOC(heading=Procedures, sectionindex, compact, depth=3, allactive, Documentatie/Ontwikkelaar/Procedures/)]] |
| | 3 | [[TOC(heading=Ontwikkelaar, sectionindex, compact, depth=2, allactive, Documentatie/Ontwikkelaar/)]] |
| | 4 | [[TOC(heading=Documentatie, sectionindex, compact, depth=1, allactive, Documentatie/)]] |
| | 5 | |
| | 6 | = Git = |
| | 7 | == Branch maken gebaseerd op een andere branch == |
| | 8 | Bijvoorbeeld "rapportages" gebaseerd op "sprint" |
| | 9 | {{{ |
| | 10 | git checkout sprint |
| | 11 | git pull |
| | 12 | git checkout -b rapportages sprint |
| | 13 | git push origin rapportages |
| | 14 | git push --set-upstream origin rapportages |
| | 15 | }}} |
| | 16 | }}} |