rubenv / grunt-git

Git commands for grunt.
MIT License
227 stars 83 forks source link

Delete tag from remote stash repository #96

Open JenkinsTestAcc opened 9 years ago

JenkinsTestAcc commented 9 years ago

Hi,

When we delete the tag using option remove in gittag, the tag is deleted from the local. On pushing the tag to the remote, tag is not removed from the remote git repository.

I believe this capability is missing and should be added.

created following tasks: gittag: { deletetag: { options: { tag: '1.0.5', remove: true } } }

gitpush: {
        pushtag:{
            options: {
                remote:'origin',
                branch:'master',
                tags : 'true',
            }
        },
    },

Thanks, Varun