# HG changeset patch # User Jordi GutiƩrrez Hermoso # Date 1394332182 18000 # Node ID 80b765f69c5fed5e245a7a517ccb4185776d30de # Parent 39800c8f0532e7042571f8c4ca56b4be23e8c136 Define a basic session that shows off basic Evolve use diff -r 39800c8f0532 -r 80b765f69c5f basic-session --- a/basic-session Sat Mar 08 19:35:00 2014 -0500 +++ b/basic-session Sat Mar 08 21:29:42 2014 -0500 @@ -1,11 +1,46 @@ - # Let's grab the Python Code of Conduct and have a look - hg clone http://hg.python.org/coc/ cd coc hg log -G +ls # Now let's add a couple of bookmarks hg book upstream hg book jordi +# And make two changes +fold -s -w 72 CodeOfConduct.rst > /tmp/coc && mv /tmp/coc CodeOfConduct.rst +sed -i 's/ $//' CodeOfConduct.rst +hg ci -m "Word-wrap CodeOfConduct" +sed -i 's/Python/Cobra/g' CodeOfConduct.rst +hg ci -m "Change Python's name to something much cooler" + +# Where were we? +hg log -G +hg diff -c 3 + +# Wait, Cobra is not a community +sed -i 's/community/command/g' CodeOfConduct.rst +hg ci -m "Cobra Command is not a community" + +hg log -G + +# Command should be capitalised +sed -i 's/command/Command/g' CodeOfConduct.rst +hg amend + +hg log -G + +# Wait, we forgot to update the README +hg gdown +hg log -G +sed -i "s/Python Software Foundation/Cobra Commander HQ/g" README +sed -i "s/PSF/CCHQ/g" README +hg amend + +# What's this about unstable csets? +hg log -G +hg evolve --all +hg log -G + +!RET \ No newline at end of file