Merge branch 'maint'
* maint: git-send-email: Document configuration options git-merge: warn when -m provided on a fast forwardmaint
commit
240c77c714
|
|
@ -91,6 +91,19 @@ The --cc option must be repeated for each user you want on the cc list.
|
||||||
The --to option must be repeated for each user you want on the to list.
|
The --to option must be repeated for each user you want on the to list.
|
||||||
|
|
||||||
|
|
||||||
|
CONFIGURATION
|
||||||
|
-------------
|
||||||
|
sendemail.aliasesfile::
|
||||||
|
To avoid typing long email addresses, point this to one or more
|
||||||
|
email aliases files. You must also supply 'sendemail.aliasfiletype'.
|
||||||
|
|
||||||
|
sendemail.aliasfiletype::
|
||||||
|
Format of the file(s) specified in sendemail.aliasesfile. Must be
|
||||||
|
one of 'mutt', 'mailrc', 'pine', or 'gnus'.
|
||||||
|
|
||||||
|
sendemail.smtpserver::
|
||||||
|
Default smtp server to use.
|
||||||
|
|
||||||
Author
|
Author
|
||||||
------
|
------
|
||||||
Written by Ryan Anderson <ryan@michonline.com>
|
Written by Ryan Anderson <ryan@michonline.com>
|
||||||
|
|
|
||||||
|
|
@ -294,7 +294,12 @@ f,*)
|
||||||
git-update-index --refresh 2>/dev/null
|
git-update-index --refresh 2>/dev/null
|
||||||
new_head=$(git-rev-parse --verify "$1^0") &&
|
new_head=$(git-rev-parse --verify "$1^0") &&
|
||||||
git-read-tree -v -m -u --exclude-per-directory=.gitignore $head "$new_head" &&
|
git-read-tree -v -m -u --exclude-per-directory=.gitignore $head "$new_head" &&
|
||||||
finish "$new_head" "Fast forward" || exit
|
msg="Fast forward"
|
||||||
|
if test -n "$have_message"
|
||||||
|
then
|
||||||
|
msg="$msg (no commit created; -m option ignored)"
|
||||||
|
fi
|
||||||
|
finish "$new_head" "$msg" || exit
|
||||||
dropsave
|
dropsave
|
||||||
exit 0
|
exit 0
|
||||||
;;
|
;;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue