Open Ducasse opened 8 months ago
self tags is empty in the following method because it returns the tag of the commit which is a new commit.
self tags
IceGitLocalBranch>>pushTagsToRemote: aRemote gitRemote: gitRemote progress: pushProgress self tags do: [ :tag | self pushTag: tag toRemote: aRemote gitRemote: gitRemote progress: pushProgress ]
Here is a possible fix
IceGitLocalBranch>>pushTagsToRemote: aRemote gitRemote: gitRemote progress: pushProgress self repository tags do: [ :tag | self pushTag: tag toRemote: aRemote gitRemote: gitRemote progress: pushProgress ]
the possible fix makes sense to me
self tags
is empty in the following method because it returns the tag of the commit which is a new commit.Here is a possible fix