aboutsummaryrefslogtreecommitdiff
path: root/updown
blob: 6b270243a0e0b39df5dec335fc385b0bf1a06d77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash
#
# commit, merge, push and fetch
#

if [ ! -z "$*" ]; then
  commit $*
else
  updates
fi

git merge-to master

if [ "`git branch | grep '^*'`" == '* develop' ]; then
  git push all
fi

git fetch --all