* git am fails to add new files
@ 2010-02-02 15:07 Thomas Koch
2010-02-03 15:33 ` Jeff King
0 siblings, 1 reply; 2+ messages in thread
From: Thomas Koch @ 2010-02-02 15:07 UTC (permalink / raw)
To: git
Hi,
I'm using GIT on Debian unstable (1.6.6.1). When applying patches I created
with git format-patch and applying them afterwards with git am, this fails
with every patch that adds a new file.
Is there any option I forgot to give to git am? Or is this a bug.
Best regards,
Thomas Koch, http://www.koch.ro
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: git am fails to add new files
2010-02-02 15:07 git am fails to add new files Thomas Koch
@ 2010-02-03 15:33 ` Jeff King
0 siblings, 0 replies; 2+ messages in thread
From: Jeff King @ 2010-02-03 15:33 UTC (permalink / raw)
To: Thomas Koch; +Cc: git
On Tue, Feb 02, 2010 at 04:07:25PM +0100, Thomas Koch wrote:
> I'm using GIT on Debian unstable (1.6.6.1). When applying patches I created
> with git format-patch and applying them afterwards with git am, this fails
> with every patch that adds a new file.
> Is there any option I forgot to give to git am? Or is this a bug.
No, it should just work. However, I can't replicate your problem using
the following script:
mkdir repo && cd repo && git init &&
echo 1 >file-1 && git add . && git commit -m one &&
echo 2 >file-2 && git add . && git commit -m two &&
git format-patch -1 --stdout >patch &&
git reset --hard HEAD^ &&
echo Confirm that file-2 is gone... &&
! grep . file-2 &&
git am patch &&
echo Confirm that file-2 is back... &&
grep . file-2
So perhaps there is something else going on. Can you provide us with
samples of the patches that fail to apply? What does "git am" say when
it tries to apply?
-Peff
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-02-03 15:33 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-02 15:07 git am fails to add new files Thomas Koch
2010-02-03 15:33 ` Jeff King
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).