Allow importing mbox files from stdin
[stgit.git] / t / t1201-pull-trailing.sh
blob42c6619112566d9e17706d2e3fa40753aab5aeb0
1 #!/bin/sh
3 # Copyright (c) 2006 Yann Dirson
6 test_description='test
10 . ./test-lib.sh
12 # don't need this repo, but better not drop it, see t1100
13 #rm -rf .git
15 # Need a repo to clone
16 test_create_repo foo
18 test_expect_success \
19 'Setup and clone tree, and setup changes' \
20 "(cd foo &&
21 printf 'a\nb\n' > file && git add file && git commit -m .
22 ) &&
23 stg clone foo bar &&
24 (cd bar && stg new p1 -m p1
25 printf 'c\n' >> file && stg refresh
29 test_expect_success \
30 'Port those patches to orig tree' \
31 "(cd foo &&
32 GIT_DIR=../bar/.git git-format-patch --stdout bases/master..HEAD |
33 git-am -3 -k
37 test_expect_success \
38 'Pull those patches applied upstream, without pushing' \
39 "(cd bar && stg pull --nopush
43 test_expect_success \
44 'Try to push those patches without merge detection' \
45 "(cd bar && stg push --all
49 test_expect_success \
50 'Pull those patches applied upstream' \
51 "(cd bar && stg push --undo && stg push --all --merged
55 test_expect_success \
56 'Check that all went well' \
57 "diff -u foo/file bar/file
60 test_done