我有一个本地Git存储库,我将其导入到我的GitHub配置文件中:
首先,我在GitHub上创建了一个空存储库。然后,在我的机器上我做了:
git remote add github <my-github-url>
git push -u github master
(我在本地存储库上只有一个主分支)
我的git版本是 1.9.2 ,我的操作系统是Windows 7。
问题是我的本地存储库中有大约20 - 30个标签。他们没有进入GitHub。我知道这是因为:
git tag
不返回任何内容)。为什么会这样?我该如何解决?
答案 0 :(得分:4)
让我的评论成为答案,你应该尝试:
git push --tags
Junio C Hamano(Git项目的当前维护者),explains why tags should not be pushed automatically。