1 Star 0 Fork 0

wuzhuqing/gtsam

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
update_wrap.sh 597 Bytes
Copy Edit Raw Blame History
Fan Jiang authored 2020-08-20 10:31 . Add script to update the wrap subtree
#!/bin/bash
REF=${1-master} # branch or tag; defaults to 'master' if parameter 1 not present
REMOTE=wrap # just a name to identify the remote
REPO=git@github.com:borglab/wrap.git # replace this with your repository URL
FOLDER=wrap # where to mount the subtree
git remote add $REMOTE --no-tags $REPO
if [[ -d $FOLDER ]]; then # update the existing subtree
git subtree pull $REMOTE $REF --prefix=$FOLDER --squash -m "Merging '$REF' into '$FOLDER'"
else # add the subtree
git subtree add $REMOTE $REF --prefix=$FOLDER --squash -m "Merging '$REF' into '$FOLDER'"
fi
git remote remove $REMOTE
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wuzhuqing/gtsam.git
git@gitee.com:wuzhuqing/gtsam.git
wuzhuqing
gtsam
gtsam
develop

Search