Git tag输出

Git tag输出操作

  1. 查看存在的tag
    • git tag -l
  2. 切换到某个tag(加入tag名为tag_1.0)
    • git checkout tag_1.0
  3. 导出并压缩为zip格式
    • git archive --format=zip --output=tag_1.0.zip tag_1.0
  4. 导出并压缩为tar.bz2格式
    • git archive tag_1.0 | bzip2 > tag_1.0.tar.bz2
  5. 导出并压缩为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

posted @ 2014-09-24 11:08  夯爹  阅读(559)  评论(0编辑  收藏  举报