#!/bin/bash # # Commit, push and fetch # # Parameters PROJECT="$1" # Try to get there if [ ! -z "$PROJECT" ]; then cd $PROJECT fi # Sync up mr fetch