#! /bin/sh
if [ ! -d ".git" -a -z "$1" ]; then
- echo "Usage: $0 repoistory [directories]" >&2
+ echo "Usage: $0 repository [directories]" >&2
exit 1
fi
source_dir="`pwd`" &&
if [ ! -d ".git" ]; then
- echo "$source_dir is not a repoistory (.git isn't found)" >&2
+ echo "$source_dir is not a repository (.git isn't found)" >&2
exit 1
fi &&
#! /bin/sh
if [ ! -d ".git" -a -z "$1" ]; then
- echo "Usage: $0 repoistory [directories]" >&2
+ echo "Usage: $0 repository [directories]" >&2
exit 1
fi
source_dir="`pwd`" &&
if [ ! -d ".git" ]; then
- echo "$source_dir is not a repoistory (.git isn't found)" >&2
+ echo "$source_dir is not a repository (.git isn't found)" >&2
exit 1
fi &&