We have a large rails project that runs on a production and staging server. Is it a good idea to create tags everytime we deploy to staging or production (this would happen automatically with capistrano). Or is better to create branches named "devlopment" and "staging", (master would contain the production status)?
closed as not constructive by Bill the Lizard♦ Aug 6 '12 at 11:12
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
You can use branches for development, staging and production and at the same time use tags to identify production versions. I like the way |
|||
|
|
|
Tags in git are pretty long-lived: they automatically propagate when you fetch from a remote repository, and if you want to clean them up you have to do so manually in every copy. Therefore, I'd rather use branches (and possibly their reflogs) for marking automatic deployment, because otherwise I'd probably be buried in lots of tags very soon. |
||||
|
|
|
We tag each of our deployements (automatically in our deployment scripts) for the purposes of quick recovery if needed, but they also come in handy as a deployment history. For example:
You can make your script keep tags for only the last N number of deployments if you want to avoid a huge amount of tags. A branch makes more sense if your method of deploying is to merge, for example, into a production branch, upon which a git hook might trigger a pull on the prod server. |
|||
|
|