Code

use 'init' instead of 'init-db' for shipped docs and tools
[git.git] / t / t5520-pull.sh
1 #!/bin/sh
3 test_description='pulling into void'
5 . ./test-lib.sh
7 D=`pwd`
9 test_expect_success setup '
11         echo file >file &&
12         git add file &&
13         git commit -a -m original
15 '
17 test_expect_success 'pulling into void' '
18         mkdir cloned &&
19         cd cloned &&
20         git init &&
21         git pull ..
22 '
24 cd "$D"
26 test_expect_success 'checking the results' '
27         test -f file &&
28         test -f cloned/file &&
29         diff file cloned/file
30 '
32 test_done