Alias para Bazaar

Algunos alias útiles para el día a día con Bazaar
# Remove all the non-versioned files from the branch's directory
# This command will not remove ignored, versioned or conflict files
bzr alias clean="clean-tree"
 
# This remove also the ones marked as ignored and conclicts files
bzr alias cleanall="clean-tree --ignored --detritus"
 
# Show a diff between the current version and the last one: last change
bzr alias difflast="diff -r last:2..last:1"
 
# Show the las commit log
bzr alias last="log --limit 1"
 
# Show the last change: commit log and diff
bzr alias show="log -v -p -n1 --long"
 
# The same that 'last'. It comes from Hg
bzr alias tip="log -r-1 -n1"
 
# Show the short commits description for the last 10 changes
# but on inversed order.
bzr alias top="log -r-10.. --short --forward"
Lenguaje: 
bash