Automatic commit at Wed Jul 25 16:58:01 WST 2012
[matches/honours.git] / update.sh
1 #!/bin/bash
2
3 # Script to update all the honours stuff on a regular basis
4
5 # Need to cd to the directory, otherwise nothing will work
6 directory="/home/sam/Documents/University/honours/"
7 cd "$directory" 
8
9 # Need to do this too. Apparently
10 ##eval `ssh-agent -s`
11
12 echo "Committing at $(date)" >> commits.log
13 git add update.sh
14 git add papers
15 git add research
16 git add thesis/proposal/*.tex
17 git add thesis/proposal/*.pdf
18 git add thesis/proposal/*.bib
19 git add thesis/*.tex
20 git add thesis/*.pdf
21 git add thesis/*.bib
22 git add course/semester2
23
24
25 git commit -m "Automatic commit at $(date)"
26 if [ "$?" == 0 ]; then
27         git push git.ucc 2>&1 >> commits.log
28 fi
29
30 #kill $SSH_AGENT_PID

UCC git Repository :: git.ucc.asn.au