mirror of
https://github.com/git/git.git
synced 2024-10-31 22:37:54 +01:00
13 lines
236 B
Bash
13 lines
236 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
test_description='read-tree can handle submodules'
|
||
|
|
||
|
. ./test-lib.sh
|
||
|
. "$TEST_DIRECTORY"/lib-submodule-update.sh
|
||
|
|
||
|
test_submodule_switch "git read-tree -u -m"
|
||
|
|
||
|
test_submodule_forced_switch "git read-tree -u --reset"
|
||
|
|
||
|
test_done
|