Inside frontend_starter
folder, type those instructions :
$ git checkout -b <branch-name>
$ git push origin <branch-name>
Then you can create your styleguide, even if the backend of your final project is not ready yet.
When your backend is ready and you're sure where you want to include the frontend_starter project, follow those command inside the backend project :
$ git remote add frontend [email protected]:siliconsalad/frontend_starter.git
$ git subtree add --prefix=<output-path> frontend <branch-name>
Then, to update frontend_starter
branch with the modifications you did on the backend repo, follow those instructions, from backend projet folder :
$ git subtree push --prefix=<output-path> frontend <branch-name>
$ git subtree pull --prefix=<output-path> --squash frontend <branch-name>