Prepare sub repos for tests
Signed-off-by: Václav Valíček <valicek1994@gmail.com>
This commit is contained in:
parent
0e36b1dd78
commit
4662c7de47
|
@ -15,3 +15,13 @@ mkdir -p tool_repos/uninitialized.git
|
|||
git init --bare tool_repos/initialized.git
|
||||
git init tool_repos/non-bare-init
|
||||
|
||||
echo "Preparing submodules for tests.."
|
||||
for repo in test-repo-*
|
||||
do
|
||||
echo ">> $repo"
|
||||
cd $repo
|
||||
for i in $(git for-each-ref --format="%(refname:short)" --no-merged=origin/HEAD refs/remotes/origin); do git switch --track $i; done
|
||||
cd ..
|
||||
done
|
||||
# recover submodules to initial state (branches will remain)
|
||||
git submodule update --init
|
||||
|
|
Loading…
Reference in New Issue
Block a user