当前位置:   article > 正文

git submodules如何指定tag?_git submodule 指定tag

git submodule 指定tag

很遗憾,没法直接指定。
直接在命令行指定不行。

git submodule add https://gitee.com/local-grpc/protobuf.git protobuf
  • 1

修改.gitmodules文件也不行,只能指定branch。

[submodule "protobuf"]
	path = protobuf
	url = https://gitee.com/local-grpc/protobuf.git
	branch = master
  • 1
  • 2
  • 3
  • 4

那怎么办?
只能在其下载好之后,

cd protobuf
git checkout v3.19.1
  • 1
  • 2

这样来实现。

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签
  

闽ICP备14008679号