#!/bin/sh # Push with the current VCS. case `vcs` in git|bzr|hg|darcs) `vcs` push; exit 0 ;; *) echo "Don't know how to push for `vcs`"; exit 1 ;; esac