Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 525 Bytes

README.md

File metadata and controls

15 lines (13 loc) · 525 Bytes

about-me

Source code for my personal website

how-to-subtree

//initialize
git subtree add --prefix out --squash [email protected]:joergpatz/joergpatz.github.io.git master
// pull updates from remote subrepo
git subtree pull --prefix out --squash [email protected]:joergpatz/joergpatz.github.io.git master
//split changes to an extra branch
git subtree split --prefix out --branch out/changes
//push the changes to subrepo
git subtree push --prefix out --squash [email protected]:joergpatz/joergpatz.github.io.git master