mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
13 lines
293 B
Bash
13 lines
293 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
echo "Using sparse checkout for orc"
|
||
|
|
||
|
FILES_TO_CHECKOUT=$(git rev-parse --git-dir)/info/sparse-checkout
|
||
|
echo '/*' > $FILES_TO_CHECKOUT
|
||
|
echo '!/*/*' >> $FILES_TO_CHECKOUT
|
||
|
echo '/c++/*' >> $FILES_TO_CHECKOUT
|
||
|
|
||
|
git config core.sparsecheckout true
|
||
|
git checkout $1
|
||
|
git read-tree -mu HEAD
|