aboutsummaryrefslogtreecommitdiff
path: root/gsync
blob: 14f18a0c50395fe6e6257068ce75bd84097c8d7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
#
# Commit, push and fetch
#

# Parameters
PROJECT="$1"

# Try to get there
if [ ! -z "$PROJECT" ]; then
  cd $PROJECT
fi

# Sync
up
mr fetch