aboutsummaryrefslogtreecommitdiff
path: root/ztd
blob: 966178d6cf06df38585510432d3597725a61775c (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
26
27
28
29
30
31
#!/bin/bash
#
# ZTD extension to commit, push and fetch a project.
#

# Parameters
PROJECT="$1"

# Try to get there
if [ ! -z "$PROJECT" ]; then
  cd $PROJECT
else if [ ! -d '.git' ]; then
  cd
  remind ~/.reminders | grep -v '^No reminders.$'
  status
  todo
  postponed
  exit
fi

# Sync
if [ -d '.git' ]; then
  if which updates > /dev/null; then
    updates
  else
    git commit -a -m "Updates $PROJECT"
    git push
  fi

  git fetch --all
fi