2008-08-21 10:44:53 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description='Intent to add'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
test_expect_success 'intent to add' '
|
2016-10-24 12:42:19 +02:00
|
|
|
test_commit 1 &&
|
|
|
|
git rm 1.t &&
|
|
|
|
echo hello >1.t &&
|
2008-08-21 10:44:53 +02:00
|
|
|
echo hello >file &&
|
|
|
|
echo hello >elif &&
|
|
|
|
git add -N file &&
|
2016-10-24 12:42:19 +02:00
|
|
|
git add elif &&
|
|
|
|
git add -N 1.t
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'git status' '
|
|
|
|
git status --porcelain | grep -v actual >actual &&
|
|
|
|
cat >expect <<-\EOF &&
|
|
|
|
DA 1.t
|
|
|
|
A elif
|
|
|
|
A file
|
|
|
|
EOF
|
|
|
|
test_cmp expect actual
|
2008-08-21 10:44:53 +02:00
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'check result of "add -N"' '
|
|
|
|
git ls-files -s file >actual &&
|
|
|
|
empty=$(git hash-object --stdin </dev/null) &&
|
|
|
|
echo "100644 $empty 0 file" >expect &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'intent to add is just an ordinary empty blob' '
|
|
|
|
git add -u &&
|
|
|
|
git ls-files -s file >actual &&
|
|
|
|
git ls-files -s elif | sed -e "s/elif/file/" >expect &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'intent to add does not clobber existing paths' '
|
|
|
|
git add -N file elif &&
|
|
|
|
empty=$(git hash-object --stdin </dev/null) &&
|
|
|
|
git ls-files -s >actual &&
|
|
|
|
! grep "$empty" actual
|
|
|
|
'
|
|
|
|
|
commit: ignore intent-to-add entries instead of refusing
Originally, "git add -N" was introduced to help users from forgetting to
add new files to the index before they ran "git commit -a". As an attempt
to help them further so that they do not forget to say "-a", "git commit"
to commit the index as-is was taught to error out, reminding the user that
they may have forgotten to add the final contents of the paths before
running the command.
This turned out to be a false "safety" that is useless. If the user made
changes to already tracked paths and paths added with "git add -N", and
then ran "git add" to register the final contents of the paths added with
"git add -N", "git commit" will happily create a commit out of the index,
without including the local changes made to the already tracked paths. It
was not a useful "safety" measure to prevent "forgetful" mistakes from
happening.
It turns out that this behaviour is not just a useless false "safety", but
actively hurts use cases of "git add -N" that were discovered later and
have become popular, namely, to tell Git to be aware of these paths added
by "git add -N", so that commands like "git status" and "git diff" would
include them in their output, even though the user is not interested in
including them in the next commit they are going to make.
Fix this ancient UI mistake, and instead make a commit from the index
ignoring the paths added by "git add -N" without adding real contents.
Based on the work by Nguyễn Thái Ngọc Duy, and helped by injection of
sanity from Jonathan Nieder and others on the Git mailing list.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-02-07 20:55:48 +01:00
|
|
|
test_expect_success 'i-t-a entry is simply ignored' '
|
2008-11-29 04:56:34 +01:00
|
|
|
test_tick &&
|
|
|
|
git commit -a -m initial &&
|
|
|
|
git reset --hard &&
|
|
|
|
|
|
|
|
echo xyzzy >rezrov &&
|
|
|
|
echo frotz >nitfol &&
|
|
|
|
git add rezrov &&
|
|
|
|
git add -N nitfol &&
|
commit: ignore intent-to-add entries instead of refusing
Originally, "git add -N" was introduced to help users from forgetting to
add new files to the index before they ran "git commit -a". As an attempt
to help them further so that they do not forget to say "-a", "git commit"
to commit the index as-is was taught to error out, reminding the user that
they may have forgotten to add the final contents of the paths before
running the command.
This turned out to be a false "safety" that is useless. If the user made
changes to already tracked paths and paths added with "git add -N", and
then ran "git add" to register the final contents of the paths added with
"git add -N", "git commit" will happily create a commit out of the index,
without including the local changes made to the already tracked paths. It
was not a useful "safety" measure to prevent "forgetful" mistakes from
happening.
It turns out that this behaviour is not just a useless false "safety", but
actively hurts use cases of "git add -N" that were discovered later and
have become popular, namely, to tell Git to be aware of these paths added
by "git add -N", so that commands like "git status" and "git diff" would
include them in their output, even though the user is not interested in
including them in the next commit they are going to make.
Fix this ancient UI mistake, and instead make a commit from the index
ignoring the paths added by "git add -N" without adding real contents.
Based on the work by Nguyễn Thái Ngọc Duy, and helped by injection of
sanity from Jonathan Nieder and others on the Git mailing list.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-02-07 20:55:48 +01:00
|
|
|
git commit -m second &&
|
|
|
|
test $(git ls-tree HEAD -- nitfol | wc -l) = 0 &&
|
2016-10-24 12:42:20 +02:00
|
|
|
test $(git diff --name-only HEAD -- nitfol | wc -l) = 1 &&
|
|
|
|
test $(git diff --name-only --ita-invisible-in-index HEAD -- nitfol | wc -l) = 0 &&
|
|
|
|
test $(git diff --name-only --ita-invisible-in-index -- nitfol | wc -l) = 1
|
2008-11-29 04:56:34 +01:00
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'can commit with an unrelated i-t-a entry in index' '
|
|
|
|
git reset --hard &&
|
commit: ignore intent-to-add entries instead of refusing
Originally, "git add -N" was introduced to help users from forgetting to
add new files to the index before they ran "git commit -a". As an attempt
to help them further so that they do not forget to say "-a", "git commit"
to commit the index as-is was taught to error out, reminding the user that
they may have forgotten to add the final contents of the paths before
running the command.
This turned out to be a false "safety" that is useless. If the user made
changes to already tracked paths and paths added with "git add -N", and
then ran "git add" to register the final contents of the paths added with
"git add -N", "git commit" will happily create a commit out of the index,
without including the local changes made to the already tracked paths. It
was not a useful "safety" measure to prevent "forgetful" mistakes from
happening.
It turns out that this behaviour is not just a useless false "safety", but
actively hurts use cases of "git add -N" that were discovered later and
have become popular, namely, to tell Git to be aware of these paths added
by "git add -N", so that commands like "git status" and "git diff" would
include them in their output, even though the user is not interested in
including them in the next commit they are going to make.
Fix this ancient UI mistake, and instead make a commit from the index
ignoring the paths added by "git add -N" without adding real contents.
Based on the work by Nguyễn Thái Ngọc Duy, and helped by injection of
sanity from Jonathan Nieder and others on the Git mailing list.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-02-07 20:55:48 +01:00
|
|
|
echo bozbar >rezrov &&
|
2008-11-29 04:56:34 +01:00
|
|
|
echo frotz >nitfol &&
|
|
|
|
git add rezrov &&
|
|
|
|
git add -N nitfol &&
|
|
|
|
git commit -m partial rezrov
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'can "commit -a" with an i-t-a entry' '
|
|
|
|
git reset --hard &&
|
|
|
|
: >nitfol &&
|
|
|
|
git add -N nitfol &&
|
|
|
|
git commit -a -m all
|
|
|
|
'
|
|
|
|
|
2012-12-16 05:15:28 +01:00
|
|
|
test_expect_success 'cache-tree invalidates i-t-a paths' '
|
|
|
|
git reset --hard &&
|
|
|
|
mkdir dir &&
|
|
|
|
: >dir/foo &&
|
|
|
|
git add dir/foo &&
|
|
|
|
git commit -m foo &&
|
|
|
|
|
|
|
|
: >dir/bar &&
|
|
|
|
git add -N dir/bar &&
|
|
|
|
git diff --cached --name-only >actual &&
|
Revert "diff-lib.c: adjust position of i-t-a entries in diff"
This reverts commit d95d728aba06a34394d15466045cbdabdada58a2.
It turns out that many other commands that need to interact with the
result of running diff-files and diff-index, e.g. "git apply", "git
rm", etc., need to be adjusted to the new world order it brings in.
For example, it would break this sequence to correct a whitespace
breakage in the parts you changed:
git add -N file
git diff --cached file | git apply --cached --whitespace=fix
git checkout file
In the old world order, "diff" showed a patch to modify an existing
empty file by adding its full contents, and "apply" updated the
index by modifying the existing empty blob (which is what an
Intent-to-Add entry records in the index) with that patch.
In the new world order, "diff" shows a patch to create a new file
with its full contents, but because "apply" thinks that the i-t-a
entry already exists in the index, it refused to accept a creation.
Adjusting "apply" to this new world order is easy, but we need to
assess the extent of the damage to the rest of the system the new
world order brought in before going forward and adjust them all,
after which we can resurrect the commit being reverted here.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2015-06-23 19:27:47 +02:00
|
|
|
echo dir/bar >expect &&
|
2012-12-16 05:15:28 +01:00
|
|
|
test_cmp expect actual &&
|
|
|
|
|
|
|
|
git write-tree >/dev/null &&
|
|
|
|
|
|
|
|
git diff --cached --name-only >actual &&
|
Revert "diff-lib.c: adjust position of i-t-a entries in diff"
This reverts commit d95d728aba06a34394d15466045cbdabdada58a2.
It turns out that many other commands that need to interact with the
result of running diff-files and diff-index, e.g. "git apply", "git
rm", etc., need to be adjusted to the new world order it brings in.
For example, it would break this sequence to correct a whitespace
breakage in the parts you changed:
git add -N file
git diff --cached file | git apply --cached --whitespace=fix
git checkout file
In the old world order, "diff" showed a patch to modify an existing
empty file by adding its full contents, and "apply" updated the
index by modifying the existing empty blob (which is what an
Intent-to-Add entry records in the index) with that patch.
In the new world order, "diff" shows a patch to create a new file
with its full contents, but because "apply" thinks that the i-t-a
entry already exists in the index, it refused to accept a creation.
Adjusting "apply" to this new world order is easy, but we need to
assess the extent of the damage to the rest of the system the new
world order brought in before going forward and adjust them all,
after which we can resurrect the commit being reverted here.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2015-06-23 19:27:47 +02:00
|
|
|
echo dir/bar >expect &&
|
2012-12-16 05:15:28 +01:00
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
2016-07-16 07:06:26 +02:00
|
|
|
test_expect_success 'cache-tree does not ignore dir that has i-t-a entries' '
|
|
|
|
git init ita-in-dir &&
|
|
|
|
(
|
|
|
|
cd ita-in-dir &&
|
|
|
|
mkdir 2 &&
|
|
|
|
for f in 1 2/1 2/2 3
|
|
|
|
do
|
|
|
|
echo "$f" >"$f"
|
|
|
|
done &&
|
|
|
|
git add 1 2/2 3 &&
|
|
|
|
git add -N 2/1 &&
|
|
|
|
git commit -m committed &&
|
|
|
|
git ls-tree -r HEAD >actual &&
|
|
|
|
grep 2/2 actual
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2016-07-16 07:06:27 +02:00
|
|
|
test_expect_success 'cache-tree does skip dir that becomes empty' '
|
|
|
|
rm -fr ita-in-dir &&
|
|
|
|
git init ita-in-dir &&
|
|
|
|
(
|
|
|
|
cd ita-in-dir &&
|
|
|
|
mkdir -p 1/2/3 &&
|
|
|
|
echo 4 >1/2/3/4 &&
|
|
|
|
git add -N 1/2/3/4 &&
|
|
|
|
git write-tree >actual &&
|
|
|
|
echo $EMPTY_TREE >expected &&
|
|
|
|
test_cmp expected actual
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2017-06-25 12:20:41 +02:00
|
|
|
test_expect_success 'commit: ita entries ignored in empty initial commit check' '
|
|
|
|
git init empty-initial-commit &&
|
2016-10-24 12:42:22 +02:00
|
|
|
(
|
2017-06-25 12:20:41 +02:00
|
|
|
cd empty-initial-commit &&
|
2016-10-24 12:42:22 +02:00
|
|
|
: >one &&
|
|
|
|
git add -N one &&
|
|
|
|
test_must_fail git commit -m nothing-new-here
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2016-10-24 12:42:21 +02:00
|
|
|
test_expect_success 'commit: ita entries ignored in empty commit check' '
|
|
|
|
git init empty-subsequent-commit &&
|
|
|
|
(
|
|
|
|
cd empty-subsequent-commit &&
|
|
|
|
test_commit one &&
|
|
|
|
: >two &&
|
|
|
|
git add -N two &&
|
|
|
|
test_must_fail git commit -m nothing-new-here
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2008-08-21 10:44:53 +02:00
|
|
|
test_done
|
|
|
|
|