| if [ ! -d $GIT_DIR ]; then |
| echo Not a git directory 1>&2 |
| git-update-cache -q --refresh -- "$@" || exit 1 |
| if [ ! -r $GIT_DIR/HEAD ]; then |
| if [ -z "$(git-ls-files)" ]; then |
| echo Nothing to commit 1>&2 |
| git-ls-files | sed 's/^/# New file: /' |
| if [ -f $GIT_DIR/MERGE_HEAD ]; then |
| echo "# It looks like your may be committing a MERGE." |
| echo "# If this is not correct, please remove the file" |
| echo "# $GIT_DIR/MERGE_HEAD" |
| PARENTS="-p HEAD -p MERGE_HEAD" |
| git-status-script >> .editmsg |
| ${VISUAL:-${EDITOR:-vi}} .editmsg |
| grep -v '^#' < .editmsg | git-stripspace > .cmitmsg |
| tree=$(git-write-tree) && |
| commit=$(cat .cmitmsg | git-commit-tree $tree $PARENTS) && |
| echo $commit > $GIT_DIR/HEAD && |
| rm -f -- $GIT_DIR/MERGE_HEAD |