view workflow-team.tex @ 322:a09a4f715d0a

Mention the free SourceTree too
author Martin Geisler <mg@aragost.com>
date Thu, 02 Feb 2012 11:48:24 +0100 (2012-02-02)
parents 779241e34bc9
children
line wrap: on
line source
\begin{frame}{Workflow in a Team}
  Mercurial scales from a single team\dots:
  \begin{center}
    \begin{tikzpicture}
      \tikzstyle{repository}+=[minimum height=18mm, text width=12mm]

      \node[repository] (a) at (120:2) {Alice};
      \node[repository] (b) at (240:2) {Bob};
      \node[repository] (c) at (  0:2) {Dev};

      \node[repository, right=of c] (t) {Test};
      \node[repository, right=of t] (p) {Prod};

      \draw[short, <->] (a) -- (c);
      \draw[short, <->] (b) -- (c);
      \draw[short, <->] (c) -- (t);
      \draw[short, <->] (t) -- (p);

      \draw<2>[alert, very thick, ->] (b.west |- 0, -3cm) --
        node[very near start, below] {unstable}
        node[very near end, below] {stable} (p.east |- 0, -3cm);
    \end{tikzpicture}
  \end{center}
\end{frame}