#!/bin/bash # # Commit both on git and svn # # Parameters ARGS="$*" # Simply update commit if git status &> /dev/null; then if [ ! -z "$1" ]; then if [ -e '.git' ]; then commit "Updates $*" elif [ -d "$1" ]; then ( cd $1 && commit "Updates $(basename $1)" ) fi else commit "Updates $(basename `pwd`)" fi else mr commit -m "Updates" fi