To start a new django project faster and faster, I would like to keep a separate "project skeleton" on which I base all my new projects. It would be great if I improved the skeleton, I could make these improvements in my active projects. How to do it with git?
So maybe on my remote git repository I would have 1 repo for each project and one for the skeleton?
- Rgo-a-repo
- Rgo-in-repo
- wireframe repo
If I want to create a new proj-C locally based on the skeleton, then move my local changes to the remote server in a new repo called proj-C-repo, how can I do this?
I read quite a bit of git documentation, but I'm confused about how to do this. Do I need to clone a skeleton or create an empty repo, and then track the remote branch or something else?
source
share