Reputation: 129
I'm writing some django apps and I have this setup:
I use git for versioning.
The idea that I have so far (after reading various tutorials) to manage everything is:
And I have lot of questions about this:
Thanks in advance, I'm a django/git novice so I'm trying to approach it in the best way from start.
Upvotes: 1
Views: 176
Reputation: 6047
It seems almost right to me (but there are many strategies), I'd make a testing-branch, so you could continue pushing to develop-branch while others are testing the test-branch. Then when it passes the test merge to Master.
(Also, if you want to make your live easier, use fab files to 'pull' on the remote machine.)
Upvotes: 2