Git tag输出操作
- 查看存在的tag
- git tag -l
- 切换到某个tag(加入tag名为tag_1.0)
- git checkout tag_1.0
- 导出并压缩为zip格式
- git archive --format=zip --output=tag_1.0.zip tag_1.0
- 导出并压缩为tar.bz2格式
- git archive tag_1.0 | bzip2 > tag_1.0.tar.bz2
- 导出并压缩为tar.gz格式
- git archive --format=tar tag_1.0 | gzip > tag_1.0.tar.gz
git打包当前代码库(all 表示所有分支)
git bundle
create bundle_name --all
bundle_name可被当做repo使用进行clone
时间: 2024-11-09 00:08:04