User .zitignore file
[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_DIR=.zit
38
39 zit_setup() {
40         ZIT_FILE="$1"
41         test $ZIT_FILE || abort "Please specify a file"
42         test -f $ZIT_FILE || abort "No such file $ZIT_FILE"
43         test $ZIT_FILE = "`basename $ZIT_FILE`" || abort "Sorry, Zit only works on files in the current directory"
44
45         export GIT_WORK_TREE="`pwd`"
46
47         # first, check if a repo exists already, looking for
48         # .zit/file.git or .file.git, in that order
49         # if neither is found, and .zit exists, set the repo dir
50         # to .zit/file.git, otherwise set it to .file.git
51         GIT_DIR="$ZIT_DIR/$ZIT_FILE.git"
52         if ! test -d "$GIT_DIR"; then
53                 GIT_DIR=".$ZIT_FILE.git"
54                 if ! test -d "$GIT_DIR"; then
55                         test -d "$ZIT_DIR" && GIT_DIR="$ZIT_DIR/$ZIT_FILE.git"
56                 fi
57         fi
58         export GIT_DIR
59 }
60
61 zit_init() {
62         if test "$1"; then
63                 zit_setup $1
64                 test -e $GIT_DIR && abort "$GIT_DIR exists, is $ZIT_FILE tracked already?"
65                 mkdir $GIT_DIR && echo "Initializing Zit repository in $GIT_DIR"
66                 test -d $GIT_DIR || abort "Failed to create $GIT_DIR"
67                 git init || abort "Failed to initialize Git repository in $GIT_DIR" 
68                 rm -rf $GIT_DIR/{hooks,info,branches,refs/tags,objects/pack,description}
69                 ZIT_IGNORE="$HOME/.zitignore"
70                 if ! test -f "$ZIT_IGNORE"; then
71                         touch "$ZIT_IGNORE" || abort "Cannot create $ZIT_IGNORE file"
72                         echo "# Ignore patterns used by Zit repositories" > "$ZIT_IGNORE"
73                         echo "# By default it's the single '*' glob, since we want to ignore all" >> $ZIT_IGNORE
74                         echo "# non-tracked files in the work-tree" >> $ZIT_IGNORE
75                         echo "*" >> $ZIT_IGNORE
76                 fi
77                 git config core.excludesfile "$ZIT_IGNORE"
78                 git add -f $ZIT_FILE || abort "Failed to add $ZIT_FILE"
79                 git commit "$@" || abort "Failed to make first commit for $ZIT_FILE"
80         else
81                 if test -d "$ZIT_DIR"; then
82                         echo "$ZIT_DIR exists already"
83                         exit
84                 fi
85                 test -e $ZIT_DIR && abort "$ZIT_DIR exists but it's not a directory, cannot continue"
86                 mkdir $ZIT_DIR
87         fi
88 }
89
90 zit_list() {
91         export GIT_WORK_TREE="`pwd`"
92         GIT_DIR=""
93         for file in "$ZIT_DIR"/*.git .*.git; do
94                 if ! test -e $file; then
95                         continue
96                 fi
97                 export GIT_DIR="$file"
98                 file="${file#.}"
99                 file="${file#zit/}"
100                 file="${file%.git}"
101                 # TODO show actual file status
102                 git ls-files -t $file
103         done;
104         # if $GIT_DIR is empty, no files were found
105         test "$GIT_DIR" || echo "(no files tracked by zit)"
106 }
107
108 case $cmd in
109         "")
110         echo $USAGE
111         ;;
112         help)
113         zit_help "$@"
114         ;;
115         init|track)
116         zit_init $1
117         ;;
118         list|tracked)
119         zit_list
120         ;;
121         # Most commands will work with the generic catch-all mechanism used
122         # below, but some of them require a more thorough analysis of the
123         # parameters to decide whether $ZIT_FILE should be put back into the
124         # parameter list or not. For example,
125         # $ zit commit somefile
126         # wouldn't do what one expects it to do, unless 'add' is run first,
127         # (except that
128         # $ zit add somefile
129         # wouldn't work either), however
130         # $ zit commit somefile -a
131         # would work correctly. So we handle some commands separately (for the
132         # moment just add and commit)
133         add|commit)
134         zit_setup $1
135         shift
136         git $cmd "$@" "$ZIT_FILE"
137         ;;
138         # the raw<command> method can be used to not replicate $ZIT_FILE in the
139         # parameter list
140         raw*)
141         zit_setup $1
142         shift
143         git ${cmd#raw} "$@"
144         ;;
145         *)
146         zit_setup $1
147         shift
148         git $cmd "$@"
149         ;;
150 esac