新建目录
mkdir workspace
初始化
cd workspace git init . git remote add origin git@github.com:kennethfan/docker-compose-tool.git
拉取分支/tag代码
git fetch --tags +refs/heads/*:refs/remotes/origin/* commit=$(git rev-parse origin/${tag}^{commit}) # ${tag} 替换成对应域名 git checkout -f $commit
最后更新于1年前