1
0
mirror of https://github.com/git/git.git synced 2024-09-28 17:22:20 +02:00
git/t/t5520-pull.sh

34 lines
406 B
Bash
Raw Normal View History

#!/bin/sh
test_description='pulling into void'
. ./test-lib.sh
D=`pwd`
test_expect_success setup '
echo file >file &&
git add file &&
git commit -a -m original
'
test_expect_success 'pulling into void' '
mkdir cloned &&
cd cloned &&
git init &&
git pull ..
'
cd "$D"
test_expect_success 'checking the results' '
test -f file &&
test -f cloned/file &&
diff file cloned/file
'
test_done