clone某標簽代碼
git clone --branch calcite-1.18.0 https://hub.fastgit.org/apache/calcite.git
查看當前分支
git branch
切換到其他標簽
git checkout xxx
切換到標簽
git checkout tag_name
基於標簽創建分支
git branch <new-branch-name> <tag-name>
git checkout newbranch
刪除本地分支
git branch -d <BranchName>