在git(github)repo中创建重复的标签,并附加-e

时间:2017-10-04 15:23:05

标签: git github git-tag

我有一个基于github的git repo,我偶尔会标记提交。

最近,我看到标签与-e附加重复。我标记了已在其中部署的模式和日期

例如今天将是

public class Car { private String driver; private Car last; public Car(String pDriver) { driver = pDriver; } public Car(Car c) { this.driver = c.getDriverName(); this.last = c.getLast(); } public String getDriverName() { return driver; } public Car getLast() { return last; } public void setLast(Car pLast) { last = pLast; } }

我似乎偶尔也会结束 something-deploy-v20171004

然后会导致

something-deploy-v20171004-esomething-deploy-v20171004

我不能为我的生活弄清楚-e的额外标签来自哪里。我通常只用命令行标记并推送到远程

something-deploy-v20171004-e

好奇以前是否有人见过这种行为。

0 个答案:

没有答案