https://github.com/genome/genome
Raw File
Tip revision: 2440afbcaa83b07bf186a8417f192dd2043f8f17 authored by Thomas B. Mooney on 04 August 2015, 20:15:39 UTC
Merge pull request #902 from tmooney/handle_inactive_status_in_purge
Tip revision: 2440afb
prepare-submodules
#!/bin/bash
set -o errexit
for submodule in $@; do
    git submodule update --init $submodule
    cd $submodule && git reset --hard HEAD && git clean -xdf && cd -
done
back to top