repo sync, git tag no tag (remote has tag)

problem causes

I used repo init ..., repo sync to pull the code, and found that there was no tag after pulling the code, and nothing was displayed after executing git tag.

solve

  1. git fetch --tags
  2. Separately git clone this warehouse can also pull down the tag.

tag needs to be pulled separately

Guess you like

Origin blog.csdn.net/weixin_40557160/article/details/129164181