質問

Which is the best way to have two different repositories on the same Django project?

I started developing a project months ago and I have the whole folder in the repository. I want to reuse some apps in the project and I would like to create a different repository for them since they will be spin-offs project. But I want to keep it updated.

Which is the best workflow, methodology, etc... to achieve this? Or is it a bad approuch?

Thanks!

Xavi

役に立ちましたか?

解決

You can wrap each app as a python package, which has its own GIT repo. And save all your packages in some private (or public?) python packages repository (like Gemfury).

Then, in your projects, just use the app as you install django itself.. pip install myapp

This way the apps a reusable and decoupled from any project.

(This works very well for myself.. perhaps there is a better way)

他のヒント

You can use submodule,

$git submodule add git://github.com/yourusername/project2.git project2

$cat .gitmodules

.gitmodules output:

[submodule "project2"]
  path = project2
  url = git://github.com/yourusername/project2.git

If you want to Clone some git project like submodule,

git clone git://github.com/yourusername/project2.git
cd project2
git submodule init
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top