Monday, December 21, 2015

在 git repository 中取出特定 tag 會用到的指令

因為某種原因,所以不能單純的就用最新的版本之類的,得要一段時間固定在某個版本上。

git tag -l

將所有已定義的 tag 列出。

git checkout tags/TAG_NAME

檢出特定 tag 版本檔案。