Changes between Initial Version and Version 1 of Documentatie/Ontwikkelaar/Procedures/Git


Ignore:
Timestamp:
09/28/22 12:35:33 (4 years ago)
Author:
henk
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentatie/Ontwikkelaar/Procedures/Git

    v1 v1  
     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 == 
     8Bijvoorbeeld "rapportages" gebaseerd op "sprint" 
     9{{{ 
     10git checkout sprint 
     11git pull 
     12git checkout -b rapportages sprint 
     13git push origin rapportages 
     14git push --set-upstream origin rapportages 
     15}}} 
     16}}}