]> git.ipfire.org Git - thirdparty/git.git/blame - t/t5702-clone-options.sh
clone: send diagnostic messages to stderr
[thirdparty/git.git] / t / t5702-clone-options.sh
CommitLineData
ecaa0cff
JK
1#!/bin/sh
2
3test_description='basic clone options'
4. ./test-lib.sh
5
6test_expect_success 'setup' '
7
8 mkdir parent &&
9 (cd parent && git init &&
10 echo one >file && git add file &&
11 git commit -m one)
12
13'
14
15test_expect_success 'clone -o' '
16
17 git clone -o foo parent clone-o &&
18 (cd clone-o && git rev-parse --verify refs/remotes/foo/master)
19
20'
21
68b939b2 22test_expect_success 'redirected clone does not show progress' '
21188b1e
MV
23
24 git clone "file://$(pwd)/parent" clone-redirected >out 2>err &&
68b939b2 25 ! grep % err
21188b1e
MV
26
27'
68b939b2
JK
28
29test_expect_success 'redirected clone -v does show progress' '
21188b1e 30
5a518ad4
TRC
31 git clone --progress "file://$(pwd)/parent" clone-redirected-progress \
32 >out 2>err &&
68b939b2 33 grep % err
21188b1e
MV
34
35'
36
ecaa0cff 37test_done