]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - processor-sdk/performance-audio-sr.git/blob - clean_and_jerk.bat
PASDK-376:Update submodules
[processor-sdk/performance-audio-sr.git] / clean_and_jerk.bat
1 set PATH_ORG=%path%
2 set path=c:\cygwin\bin;%path%
4 git clean -fdx --exclude=clean_and_jerk.bat
5 git submodule foreach git clean -fdx
7 git ls-files -m | xargs git checkout --
8 git submodule foreach "git ls-files -m | xargs git checkout --"
10 git branch -vv > repos_before_build.txt && git submodule foreach git branch -vv >> repos_before_build.txt
12 call build_all.bat SuperRepo Debug > build_all_log.txt 2>&1
14 git branch -vv > repos_after_build.txt && git submodule foreach git branch -vv >> repos_after_build.txt
16 set path=%PATH_ORG%