Simplify repository structure
[zit] / zit
1 #!/bin/bash
2
3 abort() {
4         echo $1
5         exit 1
6 }
7
8 cmd="$1"
9 shift
10
11 USAGE="usage: zit COMMAND FILE [ARGS...]"
12
13 zit_help() {
14         cmd="$1"
15         shift
16         case $cmd in
17                 git)
18                 git help "$@"
19                 ;;
20                 *)
21                 echo $USAGE
22                 echo ""
23                 echo "Set up a git repository under .zit.FILE to track changes for FILE."
24                 echo "File must be a regular file and in the current directory."
25                 echo ""
26                 echo "Zit commands:"
27                 echo "   init           Synonym for track"
28                 echo "   list           Synonym for tracked"
29                 echo "   track  Start tracking changes to FILE"
30                 echo "   tracked        List tracked files in current directory"
31                 echo ""
32                 echo "See 'zit help git' or 'git help' for git commands."
33                 ;;
34         esac
35 }
36
37 zit_setup() {
38         ZIT_FILE="$1"
39         test $ZIT_FILE || abort "Please specify a file"
40         shift
41         test -f $ZIT_FILE || abort "No such file $ZIT_FILE"
42         test $ZIT_FILE = "`basename $ZIT_FILE`" || abort "Sorry, Zit only works on files in the current directory"
43         export GIT_DIR=".$ZIT_FILE.git"
44         export GIT_WORK_TREE="`pwd`"
45 }
46
47 zit_init() {
48         zit_setup $1
49         test -e $GIT_DIR && abort "$GIT_DIR exists, is $ZIT_FILE tracked already?"
50         mkdir $GIT_DIR && echo "Initializing Zit repository in $GIT_DIR"
51         test -d $GIT_DIR || abort "Failed to create $GIT_DIR"
52         git init || abort "Failed to initialize Git repository in $GIT_DIR" 
53         echo "*" > $GIT_DIR/info/exclude
54         git add -f $ZIT_FILE || abort "Failed to add $ZIT_FILE"
55         git commit "$@" || abort "Failed to make first commit for $ZIT_FILE"
56 }
57
58 zit_list() {
59         export GIT_WORK_TREE="`pwd`"
60         for file in .*.git; do
61                 if ! test -e $file; then
62                         echo "(no files tracked by zit)"
63                         break
64                 fi
65                 export GIT_DIR="$file"
66                 file="${file#.}"
67                 file="${file%.git}"
68                 # TODO show actual file status
69                 git ls-files -t $file
70         done;
71 }
72
73 case $cmd in
74         "")
75         echo $USAGE
76         ;;
77         help)
78         zit_help "$@"
79         ;;
80         init|track)
81         zit_init $1
82         ;;
83         list|tracked)
84         zit_list
85         ;;
86         *)
87         zit_setup $1
88         git $cmd "$@" $1
89         ;;
90 esac