blob: b0333481d8dfc501fdb0cb12cfe4dee763b472a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/bin/bash
#
# Commit updates
#
# Parameters
ARGS="$*"
# Simply update commit
if git status &> /dev/null; then
if [ ! -z "$1" ]; then
commit "Updates $*"
else
commit "Updates $(basename `pwd`)"
fi
git fetch --all
else
if [ ! -z "$1" ] && [ -d "$1" ]; then
( cd $1 &> /dev/null && commit "Updates $(basename $1)" && git fetch --all )
else
mr commit -m "Updates"
mr fetch
fi
fi
|