Merge refs/heads/master from .
This commit is contained in:
commit
80b52b0f9d
@ -232,6 +232,18 @@ diff --git a/pico/pico.c b/pico/pico.c
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
||||||
|
(Daniel Barkalow)
|
||||||
|
|
||||||
|
> A patch to SubmittingPatches, MUA specific help section for
|
||||||
|
> users of Pine 4.63 would be very much appreciated.
|
||||||
|
|
||||||
|
Ah, it looks like a recent version changed the default behavior to do the
|
||||||
|
right thing, and inverted the sense of the configuration option. (Either
|
||||||
|
that or Gentoo did it.) So you need to set the
|
||||||
|
"no-strip-whitespace-before-send" option, unless the option you have is
|
||||||
|
"strip-whitespace-before-send", in which case you should avoid checking
|
||||||
|
it.
|
||||||
|
|
||||||
|
|
||||||
Thunderbird
|
Thunderbird
|
||||||
-----------
|
-----------
|
||||||
|
@ -113,21 +113,6 @@ t)
|
|||||||
fi
|
fi
|
||||||
esac
|
esac
|
||||||
|
|
||||||
if [ ! -r "$GIT_DIR/HEAD" ]
|
|
||||||
then
|
|
||||||
echo "#"
|
|
||||||
echo "# Initial commit"
|
|
||||||
echo "#"
|
|
||||||
git-ls-files | sed 's/^/# New file: /'
|
|
||||||
echo "#"
|
|
||||||
elif [ -f "$GIT_DIR/MERGE_HEAD" ]; then
|
|
||||||
echo "#"
|
|
||||||
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"
|
|
||||||
echo "# and try again"
|
|
||||||
echo "#"
|
|
||||||
fi >.editmsg
|
|
||||||
if test "$log_message" != ''
|
if test "$log_message" != ''
|
||||||
then
|
then
|
||||||
echo "$log_message"
|
echo "$log_message"
|
||||||
@ -144,7 +129,25 @@ then
|
|||||||
elif test "$use_commit" != ""
|
elif test "$use_commit" != ""
|
||||||
then
|
then
|
||||||
git-cat-file commit "$use_commit" | sed -e '1,/^$/d'
|
git-cat-file commit "$use_commit" | sed -e '1,/^$/d'
|
||||||
fi | git-stripspace >>.editmsg
|
fi | git-stripspace >.editmsg
|
||||||
|
|
||||||
|
case "$signoff" in
|
||||||
|
t)
|
||||||
|
git-var GIT_COMMITTER_IDENT | sed -e '
|
||||||
|
s/>.*/>/
|
||||||
|
s/^/Signed-off-by: /
|
||||||
|
' >>.editmsg
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -f "$GIT_DIR/MERGE_HEAD" ]; then
|
||||||
|
echo "#"
|
||||||
|
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"
|
||||||
|
echo "# and try again"
|
||||||
|
echo "#"
|
||||||
|
fi >>.editmsg
|
||||||
|
|
||||||
PARENTS="-p HEAD"
|
PARENTS="-p HEAD"
|
||||||
if [ ! -r "$GIT_DIR/HEAD" ]; then
|
if [ ! -r "$GIT_DIR/HEAD" ]; then
|
||||||
@ -186,16 +189,8 @@ else
|
|||||||
export GIT_AUTHOR_EMAIL
|
export GIT_AUTHOR_EMAIL
|
||||||
export GIT_AUTHOR_DATE
|
export GIT_AUTHOR_DATE
|
||||||
fi
|
fi
|
||||||
case "$signoff" in
|
|
||||||
t)
|
|
||||||
git-var GIT_COMMITTER_IDENT | sed -e '
|
|
||||||
s/>.*/>/
|
|
||||||
s/^/Signed-off-by: /
|
|
||||||
' >>.editmsg
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
git-status-script >>.editmsg
|
|
||||||
fi
|
fi
|
||||||
|
git-status-script >>.editmsg
|
||||||
if [ "$?" != "0" -a ! -f $GIT_DIR/MERGE_HEAD ]
|
if [ "$?" != "0" -a ! -f $GIT_DIR/MERGE_HEAD ]
|
||||||
then
|
then
|
||||||
rm -f .editmsg
|
rm -f .editmsg
|
||||||
|
@ -1,4 +1,15 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# Copyright (c) 2005 Linus Torvalds
|
||||||
|
#
|
||||||
|
|
||||||
|
# This one uses only subdirectory-aware commands, so no need to
|
||||||
|
# include sh-setup-script.
|
||||||
|
|
||||||
revs=$(git-rev-parse --revs-only --no-flags --default HEAD "$@") || exit
|
revs=$(git-rev-parse --revs-only --no-flags --default HEAD "$@") || exit
|
||||||
[ "$revs" ] || die "No HEAD ref"
|
[ "$revs" ] || {
|
||||||
git-rev-list --pretty $(git-rev-parse --default HEAD "$@") | LESS=-S ${PAGER:-less}
|
echo >&2 "No HEAD ref"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
git-rev-list --pretty $(git-rev-parse --default HEAD "$@") |
|
||||||
|
LESS=-S ${PAGER:-less}
|
||||||
|
@ -39,11 +39,23 @@ esac
|
|||||||
|
|
||||||
git-update-cache --refresh >/dev/null 2>&1
|
git-update-cache --refresh >/dev/null 2>&1
|
||||||
|
|
||||||
git-diff-cache -M --cached HEAD |
|
if test -f "$GIT_DIR/HEAD"
|
||||||
sed 's/^://' |
|
then
|
||||||
report "Updated but not checked in" "will commit"
|
git-diff-cache -M --cached HEAD |
|
||||||
|
sed 's/^://' |
|
||||||
|
report "Updated but not checked in" "will commit"
|
||||||
|
|
||||||
committable="$?"
|
committable="$?"
|
||||||
|
else
|
||||||
|
echo '#
|
||||||
|
# Initial commit
|
||||||
|
#'
|
||||||
|
git-ls-files |
|
||||||
|
sed 's/^/o o o o A /' |
|
||||||
|
report "Updated but not checked in" "will commit"
|
||||||
|
|
||||||
|
committable="$?"
|
||||||
|
fi
|
||||||
|
|
||||||
git-diff-files |
|
git-diff-files |
|
||||||
sed 's/^://' |
|
sed 's/^://' |
|
||||||
|
Loading…
Reference in New Issue
Block a user