search

Home  >  Q&A  >  body text

git 取得的tag重定向到某个文件

现有一需要:
把当前项目的tag取出来并显示到页面上,我的想法是:
1:利用git tag 命令来取得当前所有的tag然后写到一个文件中去
2:到这个文件中取出最后的那个tag既是当前项目的tag
3:把这个tag显示在页面上

遇到的问题是:
1: 我怎么把这些tag写到文件中去(例如: cat git tag > tag.txt" 这样是不行的)
2:写到文件中的tag怎么取出

ps: 你有什么好的方法来取得当前版本的tag并写到一个文件中去吗?希望你能分享!

迷茫迷茫2801 days ago605

reply all(1)I'll reply

  • 天蓬老师

    天蓬老师2017-04-21 10:59:23

    Get the git tag through git tag > tag.txt. The premise is to first cd xxxx to the directory where the git project is located

    reply
    0
  • Cancelreply