diff options
author | Junio C Hamano <junkio@cox.net> | 2005-09-07 17:26:23 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-09-07 17:45:20 -0700 |
commit | 215a7ad1ef790467a4cd3f0dcffbd6e5f04c38f7 (patch) | |
tree | 6bc7aa4f652d0ef49108d9e30a7ea7fbf8e44639 /t/t2001-checkout-cache-clash.sh | |
parent | GIT 0.99.6 (diff) | |
download | tgif-215a7ad1ef790467a4cd3f0dcffbd6e5f04c38f7.tar.xz |
Big tool rename.
As promised, this is the "big tool rename" patch. The primary differences
since 0.99.6 are:
(1) git-*-script are no more. The commands installed do not
have any such suffix so users do not have to remember if
something is implemented as a shell script or not.
(2) Many command names with 'cache' in them are renamed with
'index' if that is what they mean.
There are backward compatibility symblic links so that you and
Porcelains can keep using the old names, but the backward
compatibility support is expected to be removed in the near
future.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 't/t2001-checkout-cache-clash.sh')
-rwxr-xr-x | t/t2001-checkout-cache-clash.sh | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/t/t2001-checkout-cache-clash.sh b/t/t2001-checkout-cache-clash.sh index f0e3d1d8c3..b1c5263a91 100755 --- a/t/t2001-checkout-cache-clash.sh +++ b/t/t2001-checkout-cache-clash.sh @@ -3,7 +3,7 @@ # Copyright (c) 2005 Junio C Hamano # -test_description='git-checkout-cache test. +test_description='git-checkout-index test. This test registers the following filesystem structure in the cache: @@ -36,8 +36,8 @@ show_files() { mkdir path0 date >path0/file0 test_expect_success \ - 'git-update-cache --add path0/file0' \ - 'git-update-cache --add path0/file0' + 'git-update-index --add path0/file0' \ + 'git-update-index --add path0/file0' test_expect_success \ 'writing tree out with git-write-tree' \ 'tree1=$(git-write-tree)' @@ -46,8 +46,8 @@ test_debug 'show_files $tree1' mkdir path1 date >path1/file1 test_expect_success \ - 'git-update-cache --add path1/file1' \ - 'git-update-cache --add path1/file1' + 'git-update-index --add path1/file1' \ + 'git-update-index --add path1/file1' test_expect_success \ 'writing tree out with git-write-tree' \ 'tree2=$(git-write-tree)' @@ -56,13 +56,13 @@ test_debug 'show_files $tree2' rm -fr path1 test_expect_success \ 'read previously written tree and checkout.' \ - 'git-read-tree -m $tree1 && git-checkout-cache -f -a' + 'git-read-tree -m $tree1 && git-checkout-index -f -a' test_debug 'show_files $tree1' ln -s path0 path1 test_expect_success \ - 'git-update-cache --add a symlink.' \ - 'git-update-cache --add path1' + 'git-update-index --add a symlink.' \ + 'git-update-index --add path1' test_expect_success \ 'writing tree out with git-write-tree' \ 'tree3=$(git-write-tree)' @@ -73,7 +73,7 @@ test_debug 'show_files $tree3' test_expect_success \ 'read previously written tree and checkout.' \ - 'git-read-tree $tree2 && git-checkout-cache -f -a' + 'git-read-tree $tree2 && git-checkout-index -f -a' test_debug show_files $tree2 test_expect_success \ |