From: Junio C Hamano <hidden> Date: 2016-06-15 22:43:23
"Sean Kelley" [off-list ref] writes:
Why doesn't git-apply include an option for a signoff line like git-am?
git-applymbox /tmp/mbox ~/.signoff
Or am I missing something? (most likely the case!)
From: Timur Tabi <hidden> Date: 2016-06-15 22:43:23
Junio C Hamano wrote:
applymbox is going away.
That sucks! I like git-am. Is there a replacement command that applies a patch and
commits it at the same time? If I use git-apply on a patch that adds new files, I need to
use git-add on the files before I can commit it. That's a real pain.
--
Timur Tabi
Linux Kernel Developer @ Freescale
From: Peter Baumann <hidden> Date: 2016-06-15 22:43:23
On Mon, Jul 23, 2007 at 12:20:40PM -0500, Timur Tabi wrote:
Junio C Hamano wrote:
quoted
applymbox is going away.
That sucks! I like git-am. Is there a replacement command that applies a
patch and commits it at the same time? If I use git-apply on a patch that
adds new files, I need to use git-add on the files before I can commit it.
That's a real pain.
'git am' isn't going away, but as Junio mentioned, 'git applymbox' is.
Those are two *different* programms doing roughly the same, but
'git applymbox' is superceded by 'git am'.
-Peter