Mercurial > hg > mercurial-talk
view openoffice.tex @ 319:f230d3e2e203
Short talk leading up to a live demo
author | Martin Geisler <mg@aragost.com> |
---|---|
date | Thu, 06 Oct 2011 18:03:42 +0200 |
parents | 471923f610ab |
children |
line wrap: on
line source
\begin{frame}[fragile]{OpenOffice} Fairly large repository: \hfill\begin{tikzpicture}[overlay] \node[yshift=1em, below left] {\includegraphics[width=3cm]{openoffice}}; \end{tikzpicture} \begin{itemize} \item 70,000 files, 2,0 GB of data \item 270,000 changesets, 2,3 GB of history \end{itemize} Mercurial is fast on a repository of this size: \begin{lstlisting} $ time hg status 0.45s user 0.15s system 99% cpu |red>0.605 total $ time hg tip 0.28s user 0.03s system 99% cpu |red>0.309 total $ time hg log -r DEV300_m50 0.30s user 0.04s system 99% cpu |red>0.334 total $ time hg diff 0.74s user 0.16s system 88% cpu |red>1.006 total $ time hg commit -m 'Small change' 1.77s user 0.25s system 98% cpu |red>2.053 total \end{lstlisting} \end{frame}