22 lines
460 B
Bash
Executable File
22 lines
460 B
Bash
Executable File
#!/bin/sh
|
|
|
|
repoPathFull=$1
|
|
cloneUrl=$2
|
|
githubSha=$3
|
|
|
|
cd $repoPathFull
|
|
|
|
echo ''
|
|
echo "Cloning the repository being built:"
|
|
# DISABLE LFS
|
|
git config --global filter.lfs.smudge "git-lfs smudge --skip -- %f"
|
|
git config --global filter.lfs.process "git-lfs filter-process --skip"
|
|
# Init new repo and setup origin
|
|
git init $repoPathFull
|
|
git remote add origin $cloneUrl
|
|
# Get remote version
|
|
git fetch origin
|
|
git reset --hard $githubSha
|
|
git lfs ls-files --all
|
|
echo ''
|