Merge branch 'jt/http-redact-cookies' into maint
[git.git] / t / t3429-rebase-edit-todo.sh
blobb9292dfc2a329b32472368fb2874cc4a1e14cf47
1 #!/bin/sh
3 test_description='rebase should reread the todo file if an exec modifies it'
5 . ./test-lib.sh
7 test_expect_success 'rebase exec modifies rebase-todo' '
8 test_commit initial &&
9 todo=.git/rebase-merge/git-rebase-todo &&
10 git rebase HEAD -x "echo exec touch F >>$todo" &&
11 test -e F
14 test_done