view why-distributed.tex @ 255:b100f5e05c28

Fixed typo. Thanks to Harvey Chapman for spotting this.
author Martin Geisler <mg@aragost.com>
date Tue, 23 Nov 2010 10:17:33 +0100 (2010-11-23)
parents 168b47ebcf45
children 204c79c56c8e
line wrap: on
line source
\begin{frame}{Why Distributed?}
  \begin{tikzpicture}[overlay, remember picture]
    \tikzstyle{every node}=[repository, minimum height=8mm, text width=6mm]
    \tikzstyle{every path}=[<->, short]

    \begin{scope}[shift={(9cm, -18mm)}]
      \node (a) at ( 90:1) {};
      \node (b) at (210:1) {};
      \node (c) at (-30:1) {};
    \end{scope}
    \draw (a) -- (b);
    \draw (b) -- (c);
    \draw (c) -- (a);
  \end{tikzpicture}

  Distributed revision control gives you:
  \begin{itemize}
  \item offline commits
  \item rich set of fast local operations
  \end{itemize}

  Derived effects:
  \begin{itemize}
  \item fine-grained commits
  \item searchable history
  \item branching and merging become a natural task\\
    (not something to be feared)
  \item enables better workflows
  \end{itemize}
\end{frame}