mirror of
https://github.com/tuna/tunasync-scripts.git
synced 2025-04-20 04:12:42 +00:00
33 lines
901 B
Bash
Executable File
33 lines
901 B
Bash
Executable File
#!/bin/bash
|
|
UPSTREAM=${TUNASYNC_UPSTREAM_URL:-"https://gerrit.googlesource.com/git-repo"}
|
|
|
|
function repo_init() {
|
|
git clone --mirror $UPSTREAM $TUNASYNC_WORKING_DIR
|
|
}
|
|
|
|
function update_repo_git() {
|
|
cd $TUNASYNC_WORKING_DIR
|
|
echo "==== SYNC repo.git START ===="
|
|
git remote set-url origin "$UPSTREAM"
|
|
/usr/bin/timeout -s INT 3600 git remote -v update -p
|
|
head=$(git remote show origin | awk '/HEAD branch:/ {print $NF}')
|
|
[[ -n "$head" ]] && echo "ref: refs/heads/$head" > HEAD
|
|
git repack -a -b -d
|
|
sz=$(git count-objects -v|grep -Po '(?<=size-pack: )\d+')
|
|
sz=$(($sz*1024))
|
|
echo "size-pack:" $(numfmt --to=iec $sz)
|
|
echo "==== SYNC repo.git DONE ===="
|
|
}
|
|
|
|
function checkout_repo() {
|
|
git -C $TUNASYNC_WORKING_DIR show HEAD:repo > $TUNASYNC_WORKING_DIR/git-repo
|
|
}
|
|
|
|
if [[ ! -f "$TUNASYNC_WORKING_DIR/HEAD" ]]; then
|
|
echo "Initializing repo.git mirror"
|
|
repo_init
|
|
fi
|
|
|
|
update_repo_git
|
|
checkout_repo
|