https://github.com/genome/genome
Revision 953c136c01f2467274cb424d7be250562502968b authored by Adam Coffman on 12 August 2014, 15:14:09 UTC, committed by Adam Coffman on 12 August 2014, 15:14:09 UTC
1 parent 1a5f6bc
Raw File
Tip revision: 953c136c01f2467274cb424d7be250562502968b authored by Adam Coffman on 12 August 2014, 15:14:09 UTC
make config_item field optional in UR as well as database
Tip revision: 953c136
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