2016-12-15 7 views

Antwort

0

Basierend auf den oben genannten Unterfragen, glaube ich, die folgenden funktioniert:

// Get the changeset that the tag points to 
def referenced = $(hg id -q -r ${tag}) 

// Get the changeset that added the tag 
def addedTag = $(hg log -r children(${referenced}) --template {node}) 

// Check whether the remote repository contains the changeset 
def tagFound = $(hg outgoing -r ${addedTag}) 
Verwandte Themen