zsh/mercurial.zsh @ 87bb4c33955c

vim: bunches
author Steve Losh <steve@stevelosh.com>
date Fri, 06 Aug 2010 16:39:34 -0400
parents 7cfce5fd0b3c
children (none)
#!/usr/bin/env zsh

function pull_everything() {
    for repo in $( ls -1 ); do
        if [[ -d $repo && -d $repo/.hg ]]; then
            echo "Pulling" $repo
            hg -R $repo pull -u
            echo
        fi
    done
}