Re: Merge with local conflicts in new files

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Santi
Date: Tuesday, May 16, 2006 - 3:12 pm

Sorry, the test is wrong. Use this:

test_description='Test merge with local conflicts in new files'
. ./test-lib.sh

test_expect_success 'prepare repository' \
'echo "Hello" > init &&
git add init &&
git commit -m "Initial commit" &&
git checkout -b B &&
echo "foo" > foo &&
git add foo &&
git commit -m "File: foo" &&
git checkout master &&
echo "bar" > foo &&
'

test_expect_code 1 'Merge with local conflicts in new files' 'git
merge "merge msg" HEAD B'

test_done
-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
Merge with local conflicts in new files, Santi, (Tue May 16, 3:00 pm)
Re: Merge with local conflicts in new files, Santi, (Tue May 16, 3:12 pm)
Re: Merge with local conflicts in new files, Junio C Hamano, (Tue May 16, 3:40 pm)
Re: Merge with local conflicts in new files, Santi, (Tue May 16, 4:11 pm)
Re: Merge with local conflicts in new files, Junio C Hamano, (Tue May 16, 4:28 pm)
Re: Merge with local conflicts in new files, Pavel Roskin, (Wed May 17, 12:47 am)
Re: Merge with local conflicts in new files, Junio C Hamano, (Wed May 17, 1:20 am)
Re: Merge with local conflicts in new files, Martin Langhoff, (Wed May 17, 1:50 am)