All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
3 [ -n "$VCSH_DEBUG" ] && set -x
7 [ -z "$XDG_CONFIG_HOME" ] && XDG_CONFIG_HOME="$HOME/.config"
8 [ -z "$VCSH_BASE" ] && VCSH_BASE="$XDG_CONFIG_HOME/vcsh/repo.d"
9 for check_directory in "$VCSH_BASE" "$HOME/.gitignore.d"
11 if [ ! -d "$check_directory" ]; then
12 if [ -e "$check_directory" ]; then
13 echo "$SELF: error: $check_directory exists but is not a directory" >&2
16 echo "$SELF: attempting to create $check_directory"
17 mkdir -p "$check_directory" || (echo "$SELF: error: could not create $check_directory" >&2; exit 2)
23 [ -n "$VCSH_DEBUG" ] && echo "$SELF: debug: $1"
27 if [ -n "$VCSH_DEBUG" ] || [ -n "$VCSH_VERBOSE" ]; then echo "$SELF: verbose: $1"; fi
30 # use <repo> Use this repository
32 # exit Exit vcsh mode" >&2
34 echo "usage: $SELF <args>
36 help Display this help
41 <command> Use this repository
43 init <repo> Initialize a new repository
45 [<repo>] Clone from an existing repository
47 <repo> Seed .gitignore.d/<repo> from git ls-files" >&2
53 GIT_DIR="$VCSH_BASE/$REPO_NAME.git"
55 if [ ! -d "$GIT_DIR" ]; then
56 echo E: no repository found for "$REPO_NAME" >&2
61 export GIT_WORK_TREE="$(git config --get core.worktree)"
62 export VCSH_DIRECTORY="$REPO_NAME"
67 verbose "init() begin"
69 echo "$SELF: fatal: $GIT_DIR exists" &&
71 export GIT_WORK_TREE="$HOME"
72 mkdir -p "$GIT_WORK_TREE"
73 cd "$GIT_WORK_TREE" ||
74 (echo "$SELF: fatal: could not enter $GIT_WORK_TREE" &&
78 git config core.worktree "$GIT_WORK_TREE"
79 git config core.excludesfile ".gitignore.d/$REPO_NAME"
89 if [ "$1" = 'help' ] || [ "$#" -eq 0 ]; then
94 elif [ "$1" = 'list' ]; then
96 for i in "$VCSH_BASE"/*.git; do
97 echo $(basename "$i" .git)
102 elif [ "$1" = 'run' ]; then
111 #elif [ "$1" = 'use' ]; then
112 # verbose "use begin"
113 # if [ -n "$ZSH_VERSION" ]; then
114 # if [ -o NO_IGNORE_EOF ]; then
115 # export VCSH_NO_IGNORE_EOF=1
123 # bindkey '^d' 'vcsh_exit'
126 # [ -n "$ZSH_VERSION" ] && [ "$USER" = richih ] && buildPS1
130 elif [ "$1" = 'clone' ]; then
131 verbose "clone begin"
134 [ -z "$REPO_NAME" ] && REPO_NAME=$(basename "$GIT_REMOTE" .git)
136 export GIT_DIR="$VCSH_BASE/$REPO_NAME.git"
139 git remote add origin "$GIT_REMOTE"
140 git config branch.master.remote origin
141 git config branch.master.merge refs/heads/master
142 git config core.excludesfile ".gitignore.d/$REPO_NAME"
144 for object in $(git ls-tree -r origin/master | awk '{print $4}'); do
146 echo "$SELF: error: $object exists." &&
149 [ "$VCSH_CONFLICT" = '1' ] &&
150 echo "$SELF: fatal: will stop after fetching and not try to merge!\n" &&
151 echo " Once this situation has been resolved, run 'vcsh run <foo> git pull' to finish cloning.\n" &&
153 git merge origin/master
154 # vcsh use $REPO_NAME
157 elif [ "$1" = 'init' ]; then
159 [ -z $2 ] && help && echo && echo "$SELF $1: please specify repository to work on" && return 0
160 export REPO_NAME="$2"
161 export GIT_DIR="$VCSH_BASE/$REPO_NAME.git"
163 # vcsh use "$REPO_NAME"
166 #elif [ "$1" = 'exit' ]; then
167 # verbose "exit begin"
168 # if [ -n "$ZSH_VERSION" ] && [ "$VCSH_NO_IGNORE_EOF" = '1' ]; then
169 # unset VCSH_NO_IGNORE_EOF
170 # setopt NO_IGNORE_EOF
173 # [ -n "$ZSH_VERSION" ] && [ "$USER" = richih ] && buildPS1
177 elif [ "$1" = 'seed-gitignore' ]; then
178 verbose "seed-gitignore begin"
179 [ -z $2 ] && help && echo && echo "$SELF $1: please specify repository to work on" && return 0
181 git config core.excludesfile ".gitignore.d/$REPO_NAME"
182 files=$(git ls-files)
183 gitignores=$(for file in $(git ls-files); do
185 echo $file; new="${file%/*}"
186 [ "$file" = "$new" ] && break
189 done | sort -u | sed 's/^/!/')
190 [ -e .gitignore.d/$2 ] &&
191 echo "$SELF: .gitignore.d/$2 exists, moving it to .gitignore.d/$2.bak" &&
192 mv -f .gitignore.d/$2 .gitignore.d/$2.bak
193 echo '*' > .gitignore.d/$2
194 for gitignore in $gitignores; do
195 echo $gitignore >> .gitignore.d/$2
199 verbose "defaulting to calling help()"