Mercurial > public > dvcs_intro_brownbag
changeset 8:1f58f03815f9
Added a bullet about switching between branches being fast on the speed slide. Added a makefile.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 14 Nov 2011 20:39:48 -0600 |
parents | cb7409a6ae2d |
children | 942a12c1604d |
files | Makefile slides.rst |
diffstat | 2 files changed, 14 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Makefile Mon Nov 14 20:39:48 2011 -0600 @@ -0,0 +1,9 @@ +all: slides.html +.PHONY: all + +slides.html: slides.rst slides.css slides.cfg + landslide slides.cfg + +.PHONY: clean +clean: + rm slides.html
--- a/slides.rst Sun Nov 13 16:49:51 2011 -0600 +++ b/slides.rst Mon Nov 14 20:39:48 2011 -0600 @@ -146,12 +146,16 @@ ===== - Local operations are **fast** -- No, really, **you will** notice a big difference + + - No, really, **you will** notice a big difference + - Switching between branches will blow your mind + - Initial pull down of an entire repository *might* be slower than a CVCS - Then again, you might be surprised - Mercurial, for example, stores an entire repository in less space than a SVN working copy in many cases + ----